* src/lread.c (bytecode_from_rev_list): Fix thinko
This commit is contained in:
parent
886f4207ab
commit
8b92449b70
1 changed files with 1 additions and 1 deletions
|
@ -3490,7 +3490,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 (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