From 8116bbb0437fdb522e7f4948994da808fc89237b Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 11 Mar 1993 07:18:15 +0000 Subject: [PATCH] * unexec.c (copy_text_and_data): Error message tweaked. --- src/unexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unexec.c b/src/unexec.c index bd6985a349..2fb289d8fb 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -808,7 +808,7 @@ copy_text_and_data (new, a_out) { n = size > sizeof (page) ? sizeof (page) : size; if (read (a_out, page, n) != n || write (new, page, n) != n) - PERROR ("xemacs"); + PERROR ("emacs"); } lseek (a_out, old_a_out_ptr, 0); } -- 2.20.1