Mercurial > emacs
changeset 62425:b8c3e904ae10
(macrolet, symbol-macrolet): Doc fixes.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 17 May 2005 00:26:59 +0000 |
parents | ecbd5b866b1d |
children | c5a3c48f99b5 |
files | lisp/emacs-lisp/cl-macs.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/cl-macs.el Tue May 17 00:26:26 2005 +0000 +++ b/lisp/emacs-lisp/cl-macs.el Tue May 17 00:26:59 2005 +0000 @@ -1335,7 +1335,7 @@ ;; The following ought to have a better definition for use with newer ;; byte compilers. (defmacro macrolet (bindings &rest body) - "Make temporary macro defns. + "Make temporary macro definitions. This is like `flet', but for macros instead of functions. \(fn ((NAME ARGLIST BODY...) ...) FORM...)" @@ -1351,7 +1351,7 @@ cl-macro-environment)))))) (defmacro symbol-macrolet (bindings &rest body) - "Make symbol macro defns. + "Make symbol macro definitions. Within the body FORMs, references to the variable NAME will be replaced by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...).