aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 9e23f055f53..bd688070a3a 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -3667,7 +3667,8 @@ automatically undone when the @code{let} is finished. The setting
3667only affects expressions that are inside the bounds of the @code{let} 3667only affects expressions that are inside the bounds of the @code{let}
3668expression. In computer science jargon, we would say the binding of 3668expression. In computer science jargon, we would say the binding of
3669a symbol is visible only in functions called in the @code{let} form; 3669a symbol is visible only in functions called in the @code{let} form;
3670in Emacs Lisp, scoping is dynamic, not lexical. 3670in Emacs Lisp, the default scoping is dynamic, not lexical. (The
3671non-default lexical binding is not discussed in this manual.)
3671 3672
3672@code{let} can create more than one variable at once. Also, 3673@code{let} can create more than one variable at once. Also,
3673@code{let} gives each variable it creates an initial value, either a 3674@code{let} gives each variable it creates an initial value, either a