From: Vibhav Pant Date: Sun, 5 Feb 2017 16:40:22 +0000 (+0530) Subject: * byte-opt.el (byte-decompile-bytecode-1): Use eq instead of =. X-Git-Tag: emacs-26.0.90~860 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=74a3423b0b92b80d84f6de62d1f2d61c21e4bd90;p=emacs.git * byte-opt.el (byte-decompile-bytecode-1): Use eq instead of =. --- diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index edfa578f85b..146fbcc1cb6 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el @@ -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.