From 74a3423b0b92b80d84f6de62d1f2d61c21e4bd90 Mon Sep 17 00:00:00 2001 From: Vibhav Pant Date: Sun, 5 Feb 2017 22:10:22 +0530 Subject: * byte-opt.el (byte-decompile-bytecode-1): Use eq instead of =. --- lisp/emacs-lisp/byte-opt.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/emacs-lisp/byte-opt.el') 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. -- cgit v1.2.3