]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-after-unbind-ops): Delete byte-equal.
authorRichard M. Stallman <rms@gnu.org>
Fri, 17 Apr 1998 02:00:04 +0000 (02:00 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 17 Apr 1998 02:00:04 +0000 (02:00 +0000)
lisp/emacs-lisp/byte-opt.el

index 3453d1d71b6c03befd75b1d08c1b6492545fecc2..86f7309d1b7f00efa0aa9a470d84cc16fe7e7545 100644 (file)
 (defconst byte-after-unbind-ops
    '(byte-constant byte-dup
      byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp
-     byte-eq byte-equal byte-not
+     byte-eq byte-not
      byte-cons byte-list1 byte-list2   ; byte-list3 byte-list4
      byte-interactive-p)
    ;; How about other side-effect-free-ops?  Is it safe to move an
    ;; error invocation (such as from nth) out of an unwind-protect?
+   ;; No, it is not, because the unwind-protect forms can alter
+   ;; the inside of the object to which nth would apply.
+   ;; For the same reason, byte-equal was deleted from this list.
    "Byte-codes that can be moved past an unbind.")
 
 (defconst byte-compile-side-effect-and-error-free-ops