diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-05-26 12:30:40 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-05-26 12:30:40 +0300 |
commit | f42de74ebea14de1d8a69d2b79489814ab711883 (patch) | |
tree | 85645b021d0f900e88cddc2c648cd15e34546b89 /src/lread.c | |
parent | b6b384023a97185486ed4d69fb18bcd2d3cf8049 (diff) | |
download | emacs-f42de74ebea14de1d8a69d2b79489814ab711883.tar.gz emacs-f42de74ebea14de1d8a69d2b79489814ab711883.tar.bz2 emacs-f42de74ebea14de1d8a69d2b79489814ab711883.zip |
; * src/lread.c (read0, skip_lazy_string): Fix commentary wording.
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c index 29321263af3..f8ee4e63e23 100644 --- a/src/lread.c +++ b/src/lread.c @@ -3401,7 +3401,7 @@ read_bool_vector (Lisp_Object readcharfun) /* Skip (and optionally remember) a lazily-loaded string preceded by "#@". Return true if this was a normal skip, - false if we read #@00 (which skips to EOF). */ + false if we read #@00 (which skips to EOB). */ static bool skip_lazy_string (Lisp_Object readcharfun) { @@ -3938,7 +3938,7 @@ read0 (Lisp_Object readcharfun, bool locate_syms) and function definitions that can be loaded lazily. */ if (skip_lazy_string (readcharfun)) goto read_obj; - obj = Qnil; /* #@00 skips to EOF and yields nil. */ + obj = Qnil; /* #@00 skips to EOB and yields nil. */ break; case '$': |