-
Notifications
You must be signed in to change notification settings - Fork 653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand fopen modes #457
Open
0x501D opened this issue
Sep 29, 2023
· 0 comments
· Fixed by tsukinoko-kun/gopher-lua#9 · May be fixed by #458
Open
Expand fopen modes #457
0x501D opened this issue
Sep 29, 2023
· 0 comments
· Fixed by tsukinoko-kun/gopher-lua#9 · May be fixed by #458
Comments
0x501D
added a commit
to 0x501D/gopher-lua
that referenced
this issue
Sep 29, 2023
Support file modes: r+b, w+b, a+b. Closes yuin#457
0x501D
added a commit
to 0x501D/gopher-lua
that referenced
this issue
Dec 11, 2023
Support file modes: r+b, w+b, a+b. Closes yuin#457
0x501D
added a commit
to 0x501D/gopher-lua
that referenced
this issue
Dec 12, 2023
Support file modes: r+b, w+b, a+b. Closes yuin#457
0x501D
added a commit
to 0x501D/gopher-lua
that referenced
this issue
Dec 12, 2023
Support file modes: r+b, w+b, a+b. Closes yuin#457
tsukinoko-kun
added a commit
to tsukinoko-kun/gopher-lua
that referenced
this issue
Apr 2, 2024
Support file modes: r+b, w+b, a+b. Closes yuin#457 Co-authored-by: Pavel Balaev <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Flags:
r+b
,w+b
,a+b
are valid and works in C lua implementation.Gopher-lua throws an error:
bad argument #2 to open (invalid option: r+b (must be one of r,rb,w,wb,a,ab,r+,rb+,w+,wb+,a+,ab+))
The text was updated successfully, but these errors were encountered: