From 398241376c49796cf222ade92efcae71f3d9c0df Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 29 Aug 2008 09:27:26 +0000 Subject: [PATCH] (report_file_error): Clarify the case of slash defeating downcasing. --- src/fileio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 6b9b9afb47c..bf592fa7c4d 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -260,7 +260,8 @@ report_file_error (string, data) break; default: /* System error messages are capitalized. Downcase the initial - unless it is followed by a slash. */ + unless it is followed by a slash. (The slash case caters to + error messages that begin with "I/O" or, in German, "E/A".) */ if (STRING_MULTIBYTE (errstring) && ! EQ (Faref (errstring, make_number (1)), make_number ('/'))) { -- 2.39.5