diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-11-12 07:17:11 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-11-12 07:17:11 +0100 |
commit | fc00fe53e189df04e6325e4f19edcb0c8612600f (patch) | |
tree | 28c881b7067e630b820299b027846c428a4b0c8d /doc/lispintro | |
parent | 070d6297ca468b197744c94df0c17fb09f47f67a (diff) | |
parent | a6905e90cc3358a21726646c4ee9154e80fc96d6 (diff) | |
download | emacs-fc00fe53e189df04e6325e4f19edcb0c8612600f.tar.gz |
Merge from origin/emacs-28
a6905e90cc Fix problem with temp buffer killing in package-install-file
144ad77fda Fix Lisp Intro markup error
24b86cb4f7 Fix ACL errors with WebDAV volumes on MS-Windows
Diffstat (limited to 'doc/lispintro')
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index f5f79a543cb..6ddc3bfb5c2 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -5818,7 +5818,7 @@ written like this: @subsection The @code{let} Expression in @code{insert-buffer} After ensuring that the variable @code{buffer} refers to a buffer itself -and not just to the name of a buffer, the @code{insert-buffer function} +and not just to the name of a buffer, the @code{insert-buffer} function continues with a @code{let} expression. This specifies three local variables, @code{start}, @code{end}, and @code{newmark} and binds them to the initial value @code{nil}. These variables are used inside the |