* lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring.
Fixes: debbugs:12895
This commit is contained in:
parent
5c2a71483b
commit
eb31fa401d
2 changed files with 6 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
|
||||
|
||||
2012-11-15 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
|
||||
|
|
|
|||
|
|
@ -1648,7 +1648,7 @@ a `let' form, except that the list of symbols can be computed at run-time."
|
|||
|
||||
;;;###autoload
|
||||
(defmacro cl-flet (bindings &rest body)
|
||||
"Make temporary function definitions.
|
||||
"Make local function definitions.
|
||||
Like `cl-labels' but the definitions are not recursive.
|
||||
|
||||
\(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
|
||||
|
|
@ -1672,7 +1672,7 @@ Like `cl-labels' but the definitions are not recursive.
|
|||
|
||||
;;;###autoload
|
||||
(defmacro cl-flet* (bindings &rest body)
|
||||
"Make temporary function definitions.
|
||||
"Make local function definitions.
|
||||
Like `cl-flet' but the definitions can refer to previous ones.
|
||||
|
||||
\(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue