diff options
Diffstat (limited to 'doc/lispref/macros.texi')
-rw-r--r-- | doc/lispref/macros.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi index a2526f383aa..53751b03774 100644 --- a/doc/lispref/macros.texi +++ b/doc/lispref/macros.texi @@ -55,6 +55,11 @@ expansion, which is @code{(setq x (1+ x))}. Once the macro definition returns this expansion, Lisp proceeds to evaluate it, thus incrementing @code{x}. +@defun macrop object +This predicate tests whether its argument is a macro, and returns +@code{t} if so, @code{nil} otherwise. +@end defun + @node Expansion @section Expansion of a Macro Call @cindex expansion of macros |