Mercurial > emacs
changeset 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 | 8ed65bf4ee3d |
children | 3897ddfbb1f5 |
files | src/unexsol.c |
diffstat | 1 files changed, 0 insertions(+), 5 deletions(-) [+] |
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))); }