emacs-diffs
[Top][All Lists]
Advanced

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

master 9a0492c: ; Don't use remq (breaks bootstrapping)


From: Mattias Engdegård
Subject: master 9a0492c: ; Don't use remq (breaks bootstrapping)
Date: Sun, 28 Nov 2021 13:12:58 -0500 (EST)

branch: master
commit 9a0492ca7c343cdad75573c17c517f7369067ea8
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    ; Don't use remq (breaks bootstrapping)
---
 lisp/emacs-lisp/byte-run.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el
index ac3bb86..2ce2efd 100644
--- a/lisp/emacs-lisp/byte-run.el
+++ b/lisp/emacs-lisp/byte-run.el
@@ -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



reply via email to

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