diff options
| author | Mattias EngdegÄrd | 2021-11-28 19:06:33 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2021-11-28 19:06:33 +0100 |
| commit | 9a0492ca7c343cdad75573c17c517f7369067ea8 (patch) | |
| tree | 398a6f7eeef66cad0e4c94de4775d3d83f7c48cb | |
| parent | d50e0bdbac8e6683c6af4efa172c1b801d250486 (diff) | |
| download | emacs-9a0492ca7c343cdad75573c17c517f7369067ea8.tar.gz emacs-9a0492ca7c343cdad75573c17c517f7369067ea8.zip | |
; Don't use remq (breaks bootstrapping)
| -rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index ac3bb86a597..2ce2efd2aa7 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." | |||
| 134 | :autoload-end | 134 | :autoload-end |
| 135 | (eval-and-compile | 135 | (eval-and-compile |
| 136 | (defun ,cfname (,@(car data) ,@args) | 136 | (defun ,cfname (,@(car data) ,@args) |
| 137 | (ignore ,@(remq '&rest (remq '&optional args))) | 137 | (ignore ,@(delq '&rest (delq '&optional (copy-sequence args)))) |
| 138 | ,@(cdr data)))))))) | 138 | ,@(cdr data)))))))) |
| 139 | 139 | ||
| 140 | (defalias 'byte-run--set-doc-string | 140 | (defalias 'byte-run--set-doc-string |