diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2024-10-06 13:38:57 +0800 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2024-10-06 13:38:57 +0800 |
commit | 37a6c859b04ef9f88c3f9751027d544100cf1d2c (patch) | |
tree | fa65c1c283ab2cf7f7d619010f9d5370de786641 /lisp/emacs-lisp | |
parent | 2d4d6dc43a417b873024d1bee93036d3749f59af (diff) | |
download | emacs-37a6c859b04ef9f88c3f9751027d544100cf1d2c.tar.gz emacs-37a6c859b04ef9f88c3f9751027d544100cf1d2c.tar.bz2 emacs-37a6c859b04ef9f88c3f9751027d544100cf1d2c.zip |
; * lisp/emacs-lisp/cl-macs.el (cl-once-only): Fix capitalisation.
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 2e501005bf7..b37f744b175 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -2505,7 +2505,7 @@ by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...). (defmacro cl-once-only (names &rest body) "Generate code to evaluate each of NAMES just once in BODY. -This macro helps with writing other macros. Each of names is +This macro helps with writing other macros. Each of NAMES is either (NAME FORM) or NAME, which latter means (NAME NAME). During macroexpansion, each NAME is bound to an uninterned symbol. The expansion evaluates each FORM and binds it to the |