diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2023-05-25 22:28:25 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2023-05-26 10:22:51 +0200 |
commit | f535c0e49d5e629e60eabe9097b9c674783f9674 (patch) | |
tree | 5f186e869a48b8652c97f3cdc25c99f4f4c0701f /src/lread.c | |
parent | c0d7447e9dc14cca9a71c8cd4a84573c22108662 (diff) | |
download | emacs-f535c0e49d5e629e60eabe9097b9c674783f9674.tar.gz emacs-f535c0e49d5e629e60eabe9097b9c674783f9674.tar.bz2 emacs-f535c0e49d5e629e60eabe9097b9c674783f9674.zip |
Handle #@00 in new reader in a compatible way (bug#63722)
This was a regression from Emacs 28.
* src/lread.c (skip_lazy_string, read0): Make #@00 read as nil, which
is a quirk from the old reader that we preserve for compatibility.
* test/src/lread-tests.el (lread-skip-to-eof): Verify it.
Reported by Richard Newton.
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/lread.c b/src/lread.c index 342d367d985..29321263af3 100644 --- a/src/lread.c +++ b/src/lread.c @@ -3400,8 +3400,9 @@ read_bool_vector (Lisp_Object readcharfun) } /* Skip (and optionally remember) a lazily-loaded string - preceded by "#@". */ -static void + preceded by "#@". Return true if this was a normal skip, + false if we read #@00 (which skips to EOF). */ +static bool skip_lazy_string (Lisp_Object readcharfun) { ptrdiff_t nskip = 0; @@ -3427,9 +3428,9 @@ skip_lazy_string (Lisp_Object readcharfun) digits++; if (digits == 2 && nskip == 0) { - /* #@00 means "skip to end" */ + /* #@00 means "read nil and skip to end" */ skip_dyn_eof (readcharfun); - return; + return false; } } @@ -3476,6 +3477,8 @@ skip_lazy_string (Lisp_Object readcharfun) else /* Skip that many bytes. */ skip_dyn_bytes (readcharfun, nskip); + + return true; } /* Given a lazy-loaded string designator VAL, return the actual string. @@ -3933,8 +3936,10 @@ read0 (Lisp_Object readcharfun, bool locate_syms) /* #@NUMBER is used to skip NUMBER following bytes. That's used in .elc files to skip over doc strings and function definitions that can be loaded lazily. */ - skip_lazy_string (readcharfun); - goto read_obj; + if (skip_lazy_string (readcharfun)) + goto read_obj; + obj = Qnil; /* #@00 skips to EOF and yields nil. */ + break; case '$': /* #$ -- reference to lazy-loaded string */ |