From: Richard M. Stallman Date: Sun, 11 Nov 2001 20:10:28 +0000 (+0000) Subject: (read_escape): Use end_of_file_error for reporting eof. X-Git-Tag: ttn-vms-21-2-B4~18658 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=da3b886d00afe9a9bc5f8120a71fb544d644087f;p=emacs.git (read_escape): Use end_of_file_error for reporting eof. --- diff --git a/src/lread.c b/src/lread.c index a72832201da..d8e0fd5b679 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1516,7 +1516,7 @@ read_escape (readcharfun, stringp) switch (c) { case -1: - error ("End of file"); + end_of_file_error (); case 'a': return '\007';