diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-08-30 14:18:25 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-08-30 14:18:25 +0000 |
commit | f9a9e6ea08fbc671306e774830ebc22d9d087cb2 (patch) | |
tree | 4e7118237cb8668254f4c0de713fa92fe38c9577 /lisp/emacs-lisp | |
parent | 5fe443deae3d0036a667273ab09971b24ce282d3 (diff) | |
download | emacs-f9a9e6ea08fbc671306e774830ebc22d9d087cb2.tar.gz emacs-f9a9e6ea08fbc671306e774830ebc22d9d087cb2.tar.bz2 emacs-f9a9e6ea08fbc671306e774830ebc22d9d087cb2.zip |
(cl-macro-environment): Provide a docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 9a2eee325f4..f0ac3c562a1 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -222,7 +222,11 @@ its argument list allows full Common Lisp conventions." (defconst lambda-list-keywords '(&optional &rest &key &allow-other-keys &aux &whole &body &environment)) -(defvar cl-macro-environment nil) +(defvar cl-macro-environment nil + "Keep the list of currently active macros. +It is a list of elements of the form either: +- (SYMBOL . FUNCTION) where FUNCTION is the macro expansion function. +- (SYMBOL-NAME . EXPANSION) where SYMBOL-NAME is the name of a symbol macro.") (defvar bind-block) (defvar bind-defs) (defvar bind-enquote) (defvar bind-inits) (defvar bind-lets) (defvar bind-forms) |