diff options
| author | Richard M. Stallman | 2002-09-13 19:35:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-09-13 19:35:58 +0000 |
| commit | 312270cf02c3c7713cecfe51476ed17a0a71cf96 (patch) | |
| tree | bb5be5f202f9aced5227933817c29de5c1500f27 /src | |
| parent | 2e1bb1c32d19593833b581a78f46c5823e4a1bcb (diff) | |
| download | emacs-312270cf02c3c7713cecfe51476ed17a0a71cf96.tar.gz emacs-312270cf02c3c7713cecfe51476ed17a0a71cf96.zip | |
(unexec): Don't downcase first letter of error msg.
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexsol.c | 5 |
1 files changed, 0 insertions, 5 deletions
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, | |||
| 24 | errstring = code_convert_string_norecord (build_string (dlerror ()), | 24 | errstring = code_convert_string_norecord (build_string (dlerror ()), |
| 25 | Vlocale_coding_system, 0); | 25 | Vlocale_coding_system, 0); |
| 26 | 26 | ||
| 27 | /* System error messages are capitalized. Downcase the initial | ||
| 28 | unless it is followed by a slash. */ | ||
| 29 | if (SREF (errstring, 1) != '/') | ||
| 30 | SSET (errstring, 0, DOWNCASE (SREF (errstring, 0))); | ||
| 31 | |||
| 32 | Fsignal (Qfile_error, | 27 | Fsignal (Qfile_error, |
| 33 | Fcons (build_string ("Cannot unexec"), Fcons (errstring, data))); | 28 | Fcons (build_string ("Cannot unexec"), Fcons (errstring, data))); |
| 34 | } | 29 | } |