]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't use report_file_error; do it by hand using dlerror.
authorRichard M. Stallman <rms@gnu.org>
Thu, 12 Sep 2002 03:28:59 +0000 (03:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 12 Sep 2002 03:28:59 +0000 (03:28 +0000)
src/unexsol.c

index ff8a812f27948ab1d8f7f79d9263effdfd583a9a..41ad95ef51c5f5af64c79540a174855d29e45f06 100644 (file)
@@ -10,8 +10,22 @@ int
 unexec (char *new_name, char *old_name, unsigned int data_start,
         unsigned int bss_start, unsigned int entry_address)
 {
-  if (dldump (0, new_name, RTLD_MEMORY))
-    report_file_error ("Cannot unexec", Fcons (build_string (new_name), Qnil));
+  Lisp_Object data;
+  Lisp_Object errstring;
 
-  return 0;
+  if (! dldump (0, new_name, RTLD_MEMORY))
+    return 0;
+
+  data = Fcons (build_string (new_name), Qnil);
+  synchronize_system_messages_locale ();
+  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)));
 }