diff options
| author | Jim Blandy | 1993-03-11 07:18:15 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-11 07:18:15 +0000 |
| commit | 8116bbb0437fdb522e7f4948994da808fc89237b (patch) | |
| tree | 476bd36e5e33ee62550d83f436a4d82b7ced12aa /src/unexec.c | |
| parent | caa3156810b77c70a4d226567a191b30cf398f4d (diff) | |
| download | emacs-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.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) | |||
| 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 | } |