diff options
author | Jim Blandy <jimb@redhat.com> | 1993-03-11 07:18:15 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-03-11 07:18:15 +0000 |
commit | b5bd3ae18231d409f947c19a5f3a594ee2a54fb3 (patch) | |
tree | 4c91ef3d69bf854af9ff82b74aec06544b094927 /src/unexec.c | |
parent | a34fc4cac45af60fb705c0936e44bfb38c75957d (diff) | |
download | emacs-b5bd3ae18231d409f947c19a5f3a594ee2a54fb3.tar.gz |
* unexec.c (copy_text_and_data): Error message tweaked.
Diffstat (limited to 'src/unexec.c')
-rw-r--r-- | src/unexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexec.c b/src/unexec.c index bd6985a349b..2fb289d8fba 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); } |