summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Heerdegen <michael_heerdegen@web.de>2019-05-23 03:33:04 +0200
committerMichael Heerdegen <michael_heerdegen@web.de>2019-05-28 21:46:09 +0200
commit997ac9f829059bf37c81fd586910c834394951e6 (patch)
treee5722cdbc4940a51b38283037d2f03bdd8f21782
parent6daa69576af6a702b8cf3d57b4831a117b4bc311 (diff)
downloademacs-997ac9f829059bf37c81fd586910c834394951e6.tar.gz
* doc/misc/cl.texi (Macro Bindings): Add a detail
Say that calls of 'cl-macrolet' bound macros are expanded in the global environment.
-rw-r--r--doc/misc/cl.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index eb06791ba90..ee73c65b789 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -1359,7 +1359,8 @@ Because of the nature of macros, @code{cl-macrolet} is always lexically
scoped. The @code{cl-macrolet} binding will
affect only calls that appear physically within the body
@var{forms}, possibly after expansion of other macros in the
-body.
+body. Calls of @code{cl-macrolet} bound macros are expanded in the
+global environment.
@end defmac
@defmac cl-symbol-macrolet (bindings@dots{}) forms@dots{}