1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

(read_escape): Use end_of_file_error for reporting eof.

This commit is contained in:
Richard M. Stallman 2001-11-11 20:10:28 +00:00
parent 172171629f
commit da3b886d00

View file

@ -1516,7 +1516,7 @@ read_escape (readcharfun, stringp)
switch (c)
{
case -1:
error ("End of file");
end_of_file_error ();
case 'a':
return '\007';