Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d5443ffd
Commit
d5443ffd
authored
Aug 29, 2008
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(report_file_error): Don't downcase the first character
of errstring if it is still unibyte.
parent
94baaf4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/fileio.c
src/fileio.c
+2
-1
No files found.
src/fileio.c
View file @
d5443ffd
...
...
@@ -261,7 +261,8 @@ report_file_error (string, data)
default:
/* System error messages are capitalized. Downcase the initial
unless it is followed by a slash. */
if
(
!
EQ
(
Faref
(
errstring
,
make_number
(
1
)),
make_number
(
'/'
)))
if
(
STRING_MULTIBYTE
(
errstring
)
&&
!
EQ
(
Faref
(
errstring
,
make_number
(
1
)),
make_number
(
'/'
)))
{
int
c
;
...
...
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