diff src/unexsol.c @ 47472:6510ca25352f

(unexec): Don't downcase first letter of error msg.
author Richard M. Stallman <rms@gnu.org>
date Fri, 13 Sep 2002 19:35:58 +0000
parents d671a35d55f3
children 695cf19ef79e
line wrap: on
line diff
--- a/src/unexsol.c	Fri Sep 13 19:35:08 2002 +0000
+++ b/src/unexsol.c	Fri Sep 13 19:35:58 2002 +0000
@@ -24,11 +24,6 @@
   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)));
 }