projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da8b85b
)
* lisp/emacs-lisp/cl-lib.el (cl--defalias): Improve&fix docstring
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 30 Oct 2023 22:50:47 +0000
(18:50 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 30 Oct 2023 22:50:47 +0000
(18:50 -0400)
lisp/emacs-lisp/cl-lib.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl-lib.el
b/lisp/emacs-lisp/cl-lib.el
index 96197d43c3d94fa1311d7f90ac3b7c5e46d5d53b..ac986adc7222abb72745c252c3dc90af3197b7a0 100644
(file)
--- a/
lisp/emacs-lisp/cl-lib.el
+++ b/
lisp/emacs-lisp/cl-lib.el
@@
-185,8
+185,7
@@
to an element already in the list stored in PLACE.
(defun cl--defalias (cl-f el-f &optional doc)
"Define function CL-F as definition EL-F.
-
-For example, (cl--defalias 'cl-first 'car)."
+Like `defalias' but marks the alias itself as inlinable."
(defalias cl-f el-f doc)
(put cl-f 'byte-optimizer 'byte-compile-inline-expand))