]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 15 Nov 2012 18:35:05 +0000 (13:35 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 15 Nov 2012 18:35:05 +0000 (13:35 -0500)
Fixes: debbugs:12895
lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index 74981d0c241bff04389da21b4d31a13106b893d8..c84c6fe9dd23ce7d82f8b577e259ab60b9b5be76 100644 (file)
@@ -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)
index b28f8f7f9e9db19c03c011f0bc8f5f223b699c53..52188c53e6f47d1639e9ba6753d0b40ca3786ccf 100644 (file)
@@ -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...)"