diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-10-30 18:50:47 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-10-30 18:50:47 -0400 |
commit | a64336cbb9c95663067da9a2a09a9c281e602161 (patch) | |
tree | 8f7cde9f941571f17690ef382944fcce261c00c0 /lisp/emacs-lisp | |
parent | da8b85b577d79dd45632d9c40a1336b58b955812 (diff) | |
download | emacs-a64336cbb9c95663067da9a2a09a9c281e602161.tar.gz emacs-a64336cbb9c95663067da9a2a09a9c281e602161.tar.bz2 emacs-a64336cbb9c95663067da9a2a09a9c281e602161.zip |
* lisp/emacs-lisp/cl-lib.el (cl--defalias): Improve&fix docstring
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-lib.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index 96197d43c3d..ac986adc722 100644 --- 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)) |