diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-11-15 13:35:05 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-11-15 13:35:05 -0500 |
commit | eb31fa401dd2163032c6d3320778008043bfde55 (patch) | |
tree | 2070613da327a521a40d8aa6f8c2820993f0370e /lisp/emacs-lisp | |
parent | 5c2a71483b029100aabf5d64717120b31f4d6fa4 (diff) | |
download | emacs-eb31fa401dd2163032c6d3320778008043bfde55.tar.gz emacs-eb31fa401dd2163032c6d3320778008043bfde55.tar.bz2 emacs-eb31fa401dd2163032c6d3320778008043bfde55.zip |
* lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring.
Fixes: debbugs:12895
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index b28f8f7f9e9..52188c53e6f 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -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...)" |