Fix bytecode optimization typo
Problem reported by Simon Frankau (Bug#35562). * src/bytecode.c (exec_byte_code): Fix typo when optimizing varset.
This commit is contained in:
parent
eec3ed05e3
commit
37963ed499
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
|
|||
/* Inline the most common case. */
|
||||
if (SYMBOLP (sym)
|
||||
&& !EQ (val, Qunbound)
|
||||
&& !XSYMBOL (sym)->u.s.redirect
|
||||
&& XSYMBOL (sym)->u.s.redirect == SYMBOL_PLAINVAL
|
||||
&& !SYMBOL_TRAPPED_WRITE_P (sym))
|
||||
SET_SYMBOL_VAL (XSYMBOL (sym), val);
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue