]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove useless handling of erroneous code in Lisp optimiser
authorMattias Engdegård <mattiase@acm.org>
Thu, 4 May 2023 15:31:15 +0000 (17:31 +0200)
committerMattias Engdegård <mattiase@acm.org>
Fri, 5 May 2023 20:00:27 +0000 (22:00 +0200)
* lisp/emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
((closure ...) ...) is a malformed function call; treat it as such.
Better malformed function warning location.

lisp/emacs-lisp/byte-opt.el

index d859706c180f270e120489701c3bdc7ad564fcc0..d046c4d401c5383c85e3c2eb9504981ff4fd2320 100644 (file)
@@ -469,10 +469,6 @@ for speeding up processing.")
             form
           (byte-optimize-form newform for-effect))))
 
-      ;; FIXME: Strictly speaking, I think this is a bug: (closure...)
-      ;; is a *value* and shouldn't appear in the car.
-      (`((closure . ,_) . ,_) form)
-
       (`(setq ,var ,expr)
        (let ((lexvar (assq var byte-optimize--lexvars))
              (value (byte-optimize-form expr nil)))
@@ -500,7 +496,7 @@ for speeding up processing.")
        (cons fn (mapcar #'byte-optimize-form exps)))
 
       (`(,(pred (not symbolp)) . ,_)
-       (byte-compile-warn-x fn "`%s' is a malformed function" fn)
+       (byte-compile-warn-x form "`%s' is a malformed function" fn)
        form)
 
       ((guard (when for-effect