]> git.eshelyaron.com Git - emacs.git/commitdiff
; Don't use remq (breaks bootstrapping)
authorMattias Engdegård <mattiase@acm.org>
Sun, 28 Nov 2021 18:06:33 +0000 (19:06 +0100)
committerMattias Engdegård <mattiase@acm.org>
Sun, 28 Nov 2021 18:06:33 +0000 (19:06 +0100)
lisp/emacs-lisp/byte-run.el

index ac3bb86a5972138b1eafa056a16553e83e909e58..2ce2efd2aa79118711561253b8eed3d6b1f94133 100644 (file)
@@ -134,7 +134,7 @@ The return value of this function is not used."
              :autoload-end
              (eval-and-compile
                (defun ,cfname (,@(car data) ,@args)
-                 (ignore ,@(remq '&rest (remq '&optional args)))
+                 (ignore ,@(delq '&rest (delq '&optional (copy-sequence args))))
                  ,@(cdr data))))))))
 
 (defalias 'byte-run--set-doc-string