diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-05-17 00:26:59 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-05-17 00:26:59 +0000 |
commit | 4342e957a2521bbe9b574871e3bbd60d63c93461 (patch) | |
tree | 54a007004b6733fdf4a84dcaaab4139359140669 /lisp/emacs-lisp | |
parent | f4db41fcbbb4d7ce03dcadfd98fa919c9668e31d (diff) | |
download | emacs-4342e957a2521bbe9b574871e3bbd60d63c93461.tar.gz emacs-4342e957a2521bbe9b574871e3bbd60d63c93461.tar.bz2 emacs-4342e957a2521bbe9b574871e3bbd60d63c93461.zip |
(macrolet, symbol-macrolet): Doc fixes.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 ...). |