* byte-opt.el (byte-decompile-bytecode-1): Use eq instead of =.
This commit is contained in:
parent
382f6603ad
commit
74a3423b0b
1 changed files with 1 additions and 1 deletions
|
@ -1405,7 +1405,7 @@
|
|||
;; TAGs.
|
||||
(let ((orig-table last-constant))
|
||||
(cl-loop for e across constvec
|
||||
when (= e last-constant)
|
||||
when (eq e last-constant)
|
||||
do (setq last-constant (copy-hash-table e))
|
||||
and return nil)
|
||||
;; Replace all addresses with TAGs.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue