[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110877: * lisp/emacs-lisp/cl-macs
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110877: * lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring. |
Date: |
Thu, 15 Nov 2012 13:35:05 -0500 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 110877
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12895
committer: Stefan Monnier <address@hidden>
branch nick: emacs-24
timestamp: Thu 2012-11-15 13:35:05 -0500
message:
* lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring.
modified:
lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-11-15 07:59:46 +0000
+++ b/lisp/ChangeLog 2012-11-15 18:35:05 +0000
@@ -1,3 +1,7 @@
+2012-11-15 Stefan Monnier <address@hidden>
+
+ * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
+
2012-11-15 Glenn Morris <address@hidden>
* eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el 2012-11-05 08:29:12 +0000
+++ b/lisp/emacs-lisp/cl-macs.el 2012-11-15 18:35:05 +0000
@@ -1648,7 +1648,7 @@
;;;###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 @@
;;;###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...)"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110877: * lisp/emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring.,
Stefan Monnier <=