diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-01-09 14:12:14 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-01-09 14:12:14 +0200 |
commit | fe7263803c37c836b3484861fbe13674a5063b4e (patch) | |
tree | 53610154e5043902dfec1816950dbfea55c3f884 /lisp/emacs-lisp | |
parent | 29c7f8c915c3889dfd5b25878aa0692f826cd38f (diff) | |
download | emacs-fe7263803c37c836b3484861fbe13674a5063b4e.tar.gz emacs-fe7263803c37c836b3484861fbe13674a5063b4e.tar.bz2 emacs-fe7263803c37c836b3484861fbe13674a5063b4e.zip |
Fix cl-concatenate use in macros
* lisp/emacs-lisp/cl-macs.el (inline): Remove cl-concatenate.
(Bug#45610)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index ba634d87bc7..4cee091e60d 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3487,8 +3487,8 @@ macro that returns its `&whole' argument." (put y 'side-effect-free t)) ;;; Things that are inline. -(cl-proclaim '(inline cl-acons cl-map cl-concatenate cl-notany - cl-notevery cl-revappend cl-nreconc gethash)) +(cl-proclaim '(inline cl-acons cl-map cl-notany cl-notevery cl-revappend + cl-nreconc gethash)) ;;; Things that are side-effect-free. (mapc (lambda (x) (function-put x 'side-effect-free t)) |