mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* 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.
|
;; TAGs.
|
||||||
(let ((orig-table last-constant))
|
(let ((orig-table last-constant))
|
||||||
(cl-loop for e across constvec
|
(cl-loop for e across constvec
|
||||||
when (= e last-constant)
|
when (eq e last-constant)
|
||||||
do (setq last-constant (copy-hash-table e))
|
do (setq last-constant (copy-hash-table e))
|
||||||
and return nil)
|
and return nil)
|
||||||
;; Replace all addresses with TAGs.
|
;; Replace all addresses with TAGs.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue