]> git.eshelyaron.com Git - emacs.git/commitdiff
Elide broken but unnecessary `if` optimisations
authorMattias Engdegård <mattiase@acm.org>
Fri, 16 Dec 2022 14:56:04 +0000 (15:56 +0100)
committerMattias Engdegård <mattiase@acm.org>
Mon, 19 Dec 2022 12:19:09 +0000 (13:19 +0100)
* lisp/emacs-lisp/byte-opt.el (byte-optimize-if):
Remove explicit clauses purposing to simplify

    (if X nil t) -> (not X)
    (if X t nil) -> (not (not X))

but never did so because of a coding mistake (eq instead of equal),
found by a recently added warning.  They weren't actually needed
thanks to the optimiser's fixpoint iteration: we eventually get the
same results through

    (if X nil t) -> (if (not X) t nil) -> (if (not X) t) -> (not X)
    (if X t nil) -> (if X t) -> (not (not X))

lisp/emacs-lisp/byte-opt.el

index 55b68c58438518b60191e6587bc3f43cd562d477..898dfffef63823f0372bc869127bcef3b7f116d6 100644 (file)
@@ -1298,11 +1298,8 @@ See Info node `(elisp) Integer Basics'."
       (if else
           `(progn ,condition ,@else)
         condition))
-     ;; (if X nil t) -> (not X)
-     ((and (eq then nil) (eq else '(t)))
-      `(not ,condition))
-     ;; (if X t [nil]) -> (not (not X))
-     ((and (eq then t) (or (null else) (eq else '(nil))))
+     ;; (if X t) -> (not (not X))
+     ((and (eq then t) (null else))
       `(not ,(byte-opt--negate condition)))
      ;; (if VAR VAR X...) -> (or VAR (progn X...))
      ((and (symbolp condition) (eq condition then))