diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-09-21 00:59:22 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-09-21 00:59:22 +0000 |
commit | 8eca17c9a5ed835fa1605bf49d83b476a40f161a (patch) | |
tree | ff698a88056536897b3d0704ae380452f66d4dbb /src/unexaix.c | |
parent | 1f7850dd5c853d890c7453a5039e696edeb6ac23 (diff) | |
download | emacs-8eca17c9a5ed835fa1605bf49d83b476a40f161a.tar.gz |
(report_error): Include reason in error message.
Diffstat (limited to 'src/unexaix.c')
-rw-r--r-- | src/unexaix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unexaix.c b/src/unexaix.c index e7b7b8c10b3..364e3467b0c 100644 --- a/src/unexaix.c +++ b/src/unexaix.c @@ -237,6 +237,7 @@ static int pagemask; #endif #ifdef emacs +#include "lisp.h" static report_error (file, fd) @@ -245,7 +246,7 @@ report_error (file, fd) { if (fd) close (fd); - error ("Failure operating on %s", file); + report_file_error ("Cannot unexec", Fcons (build_string (file), Qnil)); } #endif /* emacs */ |