From: Richard M. Stallman Date: Fri, 13 Sep 2002 19:35:58 +0000 (+0000) Subject: (unexec): Don't downcase first letter of error msg. X-Git-Tag: ttn-vms-21-2-B4~13175 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=312270cf02c3c7713cecfe51476ed17a0a71cf96;p=emacs.git (unexec): Don't downcase first letter of error msg. --- diff --git a/src/unexsol.c b/src/unexsol.c index 7f73b68518b..382682e4521 100644 --- a/src/unexsol.c +++ b/src/unexsol.c @@ -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))); }