diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2023-11-06 12:06:40 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2023-11-06 12:10:02 +0100 |
commit | 94807b6896191245ff3bef44a0ec21efb918232f (patch) | |
tree | 5ca32b8d8c745fad481d8fb25dddf9ac026ae681 /lisp/emacs-lisp | |
parent | bf81706988f6b1b9d6e8033c8227f0129e04ef03 (diff) | |
download | emacs-94807b6896191245ff3bef44a0ec21efb918232f.tar.gz emacs-94807b6896191245ff3bef44a0ec21efb918232f.tar.bz2 emacs-94807b6896191245ff3bef44a0ec21efb918232f.zip |
; * lisp/emacs-lisp/cl-macs.el: Axe useless `gethash` inline decl
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 71a9ad33f98..e2c13534054 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3735,7 +3735,7 @@ macro that returns its `&whole' argument." ;;; Things that are inline. (cl-proclaim '(inline cl-acons cl-map cl-notany cl-notevery cl-revappend - cl-nreconc gethash)) + cl-nreconc)) ;;; Things that are side-effect-free. (mapc (lambda (x) (function-put x 'side-effect-free t)) |