aboutsummaryrefslogtreecommitdiffstats
path: root/src/unexec.c
diff options
context:
space:
mode:
authorJim Blandy1993-03-11 07:18:15 +0000
committerJim Blandy1993-03-11 07:18:15 +0000
commit8116bbb0437fdb522e7f4948994da808fc89237b (patch)
tree476bd36e5e33ee62550d83f436a4d82b7ced12aa /src/unexec.c
parentcaa3156810b77c70a4d226567a191b30cf398f4d (diff)
downloademacs-8116bbb0437fdb522e7f4948994da808fc89237b.tar.gz
emacs-8116bbb0437fdb522e7f4948994da808fc89237b.zip
* unexec.c (copy_text_and_data): Error message tweaked.
Diffstat (limited to 'src/unexec.c')
-rw-r--r--src/unexec.c2
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)
808 { 808 {
809 n = size > sizeof (page) ? sizeof (page) : size; 809 n = size > sizeof (page) ? sizeof (page) : size;
810 if (read (a_out, page, n) != n || write (new, page, n) != n) 810 if (read (a_out, page, n) != n || write (new, page, n) != n)
811 PERROR ("xemacs"); 811 PERROR ("emacs");
812 } 812 }
813 lseek (a_out, old_a_out_ptr, 0); 813 lseek (a_out, old_a_out_ptr, 0);
814 } 814 }