1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

* unexec.c (copy_text_and_data): Error message tweaked.

This commit is contained in:
Jim Blandy 1993-03-11 07:18:15 +00:00
parent caa3156810
commit 8116bbb043

View file

@ -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);
}