[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/unexsol.c
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/src/unexsol.c |
Date: |
Fri, 13 Sep 2002 15:35:58 -0400 |
Index: emacs/src/unexsol.c
diff -c emacs/src/unexsol.c:1.3 emacs/src/unexsol.c:1.4
*** emacs/src/unexsol.c:1.3 Thu Sep 12 15:35:17 2002
--- emacs/src/unexsol.c Fri Sep 13 15:35:58 2002
***************
*** 24,34 ****
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)));
}
--- 24,29 ----