]> git.eshelyaron.com Git - emacs.git/commitdiff
* byte-opt.el (byte-decompile-bytecode-1): Use eq instead of =.
authorVibhav Pant <vibhavp@gmail.com>
Sun, 5 Feb 2017 16:40:22 +0000 (22:10 +0530)
committerVibhav Pant <vibhavp@gmail.com>
Sun, 5 Feb 2017 16:40:22 +0000 (22:10 +0530)
lisp/emacs-lisp/byte-opt.el

index edfa578f85b9109c2b36248503eecb5da12daffd..146fbcc1cb615d054b93ba4f9790bb61936b342c 100644 (file)
              ;; 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.