aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-07-18 13:29:49 +0000
committerKim F. Storm2006-07-18 13:29:49 +0000
commitdbfcf224aceae043fb06e619d981fc0d6a39a1f2 (patch)
tree0c4811e66ea2c0eb2418a41456f552a701ec8e7f
parentd0a29e1de77e4c1c01c46d80b6ac2df06b1df2b3 (diff)
downloademacs-dbfcf224aceae043fb06e619d981fc0d6a39a1f2.tar.gz
emacs-dbfcf224aceae043fb06e619d981fc0d6a39a1f2.zip
(unexec): Use xsignal.
-rw-r--r--src/unexsol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexsol.c b/src/unexsol.c
index 426a7f7cb99..9f919faedc0 100644
--- a/src/unexsol.c
+++ b/src/unexsol.c
@@ -24,7 +24,7 @@ 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 Fsignal (Qfile_error, 27 xsignal (Qfile_error,
28 Fcons (build_string ("Cannot unexec"), Fcons (errstring, data))); 28 Fcons (build_string ("Cannot unexec"), Fcons (errstring, data)));
29} 29}
30 30