1
Fork 0
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:
Vibhav Pant 2017-02-05 22:10:22 +05:30
parent 382f6603ad
commit 74a3423b0b

View file

@ -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.