aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-12-22 12:11:46 +0200
committerEli Zaretskii2024-12-22 12:11:46 +0200
commit861b7864fc4b8319a8f8756f02e9a4cfcc25bbfe (patch)
treecf77a62057791985644bf3aad82bbee88dc0dfa6
parent77243ba5be8c8e5319c4b07fabed6fee66e6ac7f (diff)
downloademacs-861b7864fc4b8319a8f8756f02e9a4cfcc25bbfe.tar.gz
emacs-861b7864fc4b8319a8f8756f02e9a4cfcc25bbfe.zip
; Fix node name in emacs-lisp-intro.texi
* doc/lispintro/emacs-lisp-intro.texi (Lexical vs Dynamic Binding Example): Renamed from "... vs. ...", to avoid using period in node names.
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 49916235fbf..226ffc823ed 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -3774,7 +3774,7 @@ elisp, The Emacs Lisp Reference Manual}.
3774 3774
3775@menu 3775@menu
3776* Lexical & Dynamic Binding Differences:: 3776* Lexical & Dynamic Binding Differences::
3777* Lexical vs. Dynamic Binding Example:: 3777* Lexical vs Dynamic Binding Example::
3778@end menu 3778@end menu
3779 3779
3780@node Lexical & Dynamic Binding Differences 3780@node Lexical & Dynamic Binding Differences
@@ -3811,7 +3811,7 @@ on the top of the stack, and then executes the @code{let} body. Once
3811the @code{let} body finishes, it takes that binding off of the stack, 3811the @code{let} body finishes, it takes that binding off of the stack,
3812revealing the one it had (if any) before the @code{let} expression. 3812revealing the one it had (if any) before the @code{let} expression.
3813 3813
3814@node Lexical vs. Dynamic Binding Example 3814@node Lexical vs Dynamic Binding Example
3815@unnumberedsubsubsec Example of Lexical vs. Dynamic Binding 3815@unnumberedsubsubsec Example of Lexical vs. Dynamic Binding
3816In some cases, both lexical and dynamic binding behave identically. 3816In some cases, both lexical and dynamic binding behave identically.
3817However, in other cases, they can change the meaning of your program. 3817However, in other cases, they can change the meaning of your program.