projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8014dbb
)
; * lisp/emacs-lisp/cl-macs.el (cl-labels): Fix stray diff marker.
author
Robert Pluim
<rpluim@gmail.com>
Wed, 20 Mar 2024 08:33:37 +0000
(09:33 +0100)
committer
Robert Pluim
<rpluim@gmail.com>
Wed, 20 Mar 2024 08:37:09 +0000
(09:37 +0100)
lisp/emacs-lisp/cl-macs.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl-macs.el
b/lisp/emacs-lisp/cl-macs.el
index 949b3284782150de0eecd17620f7852ea32613ae..732deda618d548d58ecadf9c1a78e16031d83afb 100644
(file)
--- a/
lisp/emacs-lisp/cl-macs.el
+++ b/
lisp/emacs-lisp/cl-macs.el
@@
-2203,7
+2203,7
@@
Like `cl-flet' but the definitions can refer to previous ones.
;;;###autoload
(defmacro cl-labels (bindings &rest body)
"Make local (recursive) function definitions.
-
+
BINDINGS is a list of definitions of the form (FUNC ARGLIST BODY...) where
+BINDINGS is a list of definitions of the form (FUNC ARGLIST BODY...) where
FUNC is the function name, ARGLIST its arguments, and BODY the
forms of the function body. FUNC is defined in any BODY, as well
as FORM, so you can write recursive and mutually recursive