summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-04-28 22:00:12 +0200
committerAndrea Corallo <akrl@sdf.org>2021-04-28 22:08:29 +0200
commitf32ff8102076fabe513b3135de0adb0ff58cb815 (patch)
treed8dc9d4528adeead2602c21bdeb4693402226b3a
parentcccdea7e23730d860d51758548e0b0a76341d26a (diff)
downloademacs-f32ff8102076fabe513b3135de0adb0ff58cb815.tar.gz
emacs-f32ff8102076fabe513b3135de0adb0ff58cb815.tar.bz2
emacs-f32ff8102076fabe513b3135de0adb0ff58cb815.zip
* Add a note related to native compilation and Dynamic Binding
* doc/lispref/variables.texi (Dynamic Binding): Add a note related to native compilation.
-rw-r--r--doc/lispref/variables.texi3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi
index 0ddf3e465d6..b25eea12a53 100644
--- a/doc/lispref/variables.texi
+++ b/doc/lispref/variables.texi
@@ -1010,6 +1010,9 @@ a dynamic local binding, Emacs records the contents of the value cell
value cell. When the binding construct finishes executing, Emacs pops
the old value off the stack, and puts it in the value cell.
+ Note that when code using Dynamic Binding is native compiled the
+native compiler will not perform any Lisp specific optimization.
+
@node Dynamic Binding Tips
@subsection Proper Use of Dynamic Binding