* src/lread.c (bytecode_from_rev_list): Fix assertion failure
The assertion failure was raised at lread.c:411 during the `lread-invalid-bytecodes` test in `test/src/lread-tests.el`. I suspect we could remove the assertion instead.
This commit is contained in:
parent
52abeaf133
commit
7d3c3cad93
1 changed files with 1 additions and 1 deletions
|
@ -3496,7 +3496,7 @@ bytecode_from_rev_list (Lisp_Object elems, Lisp_Object readcharfun)
|
|||
Lisp_Object *vec = XVECTOR (obj)->contents;
|
||||
ptrdiff_t size = ASIZE (obj);
|
||||
|
||||
if (size >= COMPILED_CONSTANTS)
|
||||
if (infile && size >= COMPILED_CONSTANTS)
|
||||
{
|
||||
/* Always read 'lazily-loaded' bytecode (generated by the
|
||||
`byte-compile-dynamic' feature prior to Emacs 30) eagerly, to
|
||||
|
|
Loading…
Add table
Reference in a new issue