From: Juanma Barranquero Date: Tue, 17 May 2005 00:26:59 +0000 (+0000) Subject: (macrolet, symbol-macrolet): Doc fixes. X-Git-Tag: ttn-vms-21-2-B4~226 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4342e957a2521bbe9b574871e3bbd60d63c93461;p=emacs.git (macrolet, symbol-macrolet): Doc fixes. --- diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index aae2fd9f3d8..a585c7e52e6 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -1335,7 +1335,7 @@ Unlike `flet', this macro is fully compliant with the Common Lisp standard. ;; 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 @@ This is like `flet', but for macros instead of functions. 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 ...).