diff options
| author | Glenn Morris | 2020-04-13 09:02:29 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-04-13 09:02:29 -0700 |
| commit | 0a4b992c422d98fbb351d3b03265eb1029012c1d (patch) | |
| tree | 8216a67339ed2fecc3d889678278b9a3cb7fb914 /doc/lispintro | |
| parent | d0b9cf876fa62e3584a062e123a87e28278782cf (diff) | |
| parent | 1dfc497fac22c199a944ef64233266bd6cd2fee6 (diff) | |
| download | emacs-0a4b992c422d98fbb351d3b03265eb1029012c1d.tar.gz emacs-0a4b992c422d98fbb351d3b03265eb1029012c1d.zip | |
Merge from origin/emacs-27
1dfc497fac Minor wording change in Introduction to Programming in Ema...
ff09b4eeac Fix 'flymake-show-diagnostics-buffer' when line numbers ar...
63e8d0ea87 Fix last changes describing mail commands
01212a762f Do setup Flymake in file-less Elisp buffers
36873ef2b2 Fix error message for ‘cl-struct-unknown-slot’ (bug#39995)
3f9310b0fe Fix and improve documentation of mail-related features
1482a75efa Fix build failure with Fx_gtk_debug
cf57663f2a Mention jit-lock deferred as an alternative to fast-but-im...
# Conflicts:
# etc/NEWS
Diffstat (limited to 'doc/lispintro')
| -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 9834952566f..1726936de10 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 |