aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 8eb1b3a2c87..6b9b9afb47c 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -261,7 +261,8 @@ report_file_error (string, data)
261 default: 261 default:
262 /* System error messages are capitalized. Downcase the initial 262 /* System error messages are capitalized. Downcase the initial
263 unless it is followed by a slash. */ 263 unless it is followed by a slash. */
264 if (! EQ (Faref (errstring, make_number (1)), make_number ('/'))) 264 if (STRING_MULTIBYTE (errstring)
265 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
265 { 266 {
266 int c; 267 int c;
267 268