# HG changeset patch # User Richard M. Stallman # Date 1031945758 0 # Node ID 6510ca25352fea741e35f9392a140cf2c68ecacf # Parent 8ed65bf4ee3dd177c66f65e5974ad800df12a711 (unexec): Don't downcase first letter of error msg. diff -r 8ed65bf4ee3d -r 6510ca25352f src/unexsol.c --- 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))); }