emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] feature/byte-switch 74a3423: * byte-opt.el (byte-decompile


From: Vibhav Pant
Subject: [Emacs-diffs] feature/byte-switch 74a3423: * byte-opt.el (byte-decompile-bytecode-1): Use eq instead of =.
Date: Sun, 5 Feb 2017 16:41:01 +0000 (UTC)

branch: feature/byte-switch
commit 74a3423b0b92b80d84f6de62d1f2d61c21e4bd90
Author: Vibhav Pant <address@hidden>
Commit: Vibhav Pant <address@hidden>

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

diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el
index edfa578..146fbcc 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]