]> git.eshelyaron.com Git - emacs.git/commitdiff
(macrolet, symbol-macrolet): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 17 May 2005 00:26:59 +0000 (00:26 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 17 May 2005 00:26:59 +0000 (00:26 +0000)
lisp/emacs-lisp/cl-macs.el

index aae2fd9f3d86fa564b5e92e32a28385db3d2406f..a585c7e52e6c97a3a4bd9c4dcdc33bb61b2748e0 100644 (file)
@@ -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 ...).