aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-11 20:10:28 +0000
committerRichard M. Stallman2001-11-11 20:10:28 +0000
commitda3b886d00afe9a9bc5f8120a71fb544d644087f (patch)
tree04b5b988ae347d28b303365447d978f33b90c049 /src/lread.c
parent172171629f8bc115b1d87c4fe389053a19222790 (diff)
downloademacs-da3b886d00afe9a9bc5f8120a71fb544d644087f.tar.gz
emacs-da3b886d00afe9a9bc5f8120a71fb544d644087f.zip
(read_escape): Use end_of_file_error for reporting eof.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
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)
1516 switch (c) 1516 switch (c)
1517 { 1517 {
1518 case -1: 1518 case -1:
1519 error ("End of file"); 1519 end_of_file_error ();
1520 1520
1521 case 'a': 1521 case 'a':
1522 return '\007'; 1522 return '\007';