diff options
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 3 |
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 | |||
| 3667 | only affects expressions that are inside the bounds of the @code{let} | 3667 | only affects expressions that are inside the bounds of the @code{let} |
| 3668 | expression. In computer science jargon, we would say the binding of | 3668 | expression. In computer science jargon, we would say the binding of |
| 3669 | a symbol is visible only in functions called in the @code{let} form; | 3669 | a symbol is visible only in functions called in the @code{let} form; |
| 3670 | in Emacs Lisp, scoping is dynamic, not lexical. | 3670 | in Emacs Lisp, the default scoping is dynamic, not lexical. (The |
| 3671 | non-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 |