Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
3d411bb1
Commit
3d411bb1
authored
Jan 05, 2007
by
Rémi Denis-Courmont
Browse files
Fix CRLF on Win32 with utf8_fopen (thanks to Md) closes #837
parent
0a637ed7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/text/unicode.c
View file @
3d411bb1
...
...
@@ -349,6 +349,12 @@ FILE *utf8_fopen (const char *filename, const char *mode)
case
'+'
:
rwflags
=
O_RDWR
;
break
;
#ifdef O_TEXT
case
't'
:
oflags
|=
O_TEXT
;
break
;
#endif
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment