From: Stefan Monnier Date: Thu, 15 Nov 2012 18:35:05 +0000 (-0500) Subject: * lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring. X-Git-Tag: emacs-24.2.90~75 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eb31fa401dd2163032c6d3320778008043bfde55;p=emacs.git * lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring. Fixes: debbugs:12895 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 74981d0c241..c84c6fe9dd2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-11-15 Stefan Monnier + + * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895). + 2012-11-15 Glenn Morris * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838) 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...)"