aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorAndrea Corallo2021-04-28 22:00:12 +0200
committerAndrea Corallo2021-04-28 22:08:29 +0200
commitf32ff8102076fabe513b3135de0adb0ff58cb815 (patch)
treed8dc9d4528adeead2602c21bdeb4693402226b3a /doc
parentcccdea7e23730d860d51758548e0b0a76341d26a (diff)
downloademacs-f32ff8102076fabe513b3135de0adb0ff58cb815.tar.gz
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.
Diffstat (limited to 'doc')
-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
1010value cell. When the binding construct finishes executing, Emacs pops 1010value cell. When the binding construct finishes executing, Emacs pops
1011the old value off the stack, and puts it in the value cell. 1011the old value off the stack, and puts it in the value cell.
1012 1012
1013 Note that when code using Dynamic Binding is native compiled the
1014native compiler will not perform any Lisp specific optimization.
1015
1013@node Dynamic Binding Tips 1016@node Dynamic Binding Tips
1014@subsection Proper Use of Dynamic Binding 1017@subsection Proper Use of Dynamic Binding
1015 1018