]> code.delx.au - gnu-emacs/commitdiff
(unexec): Don't downcase first letter of error msg.
authorRichard M. Stallman <rms@gnu.org>
Fri, 13 Sep 2002 19:35:58 +0000 (19:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 13 Sep 2002 19:35:58 +0000 (19:35 +0000)
src/unexsol.c

index 7f73b68518b83fe67a6d908e1474698f5b83a022..382682e452149e2fc194b7d0ac4886f0b40272e0 100644 (file)
@@ -24,11 +24,6 @@ unexec (char *new_name, char *old_name, unsigned int data_start,
   errstring = code_convert_string_norecord (build_string (dlerror ()),
                                            Vlocale_coding_system, 0);
 
-  /* System error messages are capitalized.  Downcase the initial
-     unless it is followed by a slash.  */
-  if (SREF (errstring, 1) != '/')
-    SSET (errstring, 0, DOWNCASE (SREF (errstring, 0)));
-
   Fsignal (Qfile_error,
           Fcons (build_string ("Cannot unexec"), Fcons (errstring, data)));
 }