* 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.
(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.