aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2023-11-29 15:04:49 +0200
committerEli Zaretskii2023-11-29 15:04:49 +0200
commit2e5d47f578aa0b60355cc23eda60e2b1d200dce9 (patch)
tree479fabf3bc94aa2edcd8775483ebda99793fc6ac
parentc46700deb0aa8750f19e91d050e76c91fff8ce11 (diff)
downloademacs-2e5d47f578aa0b60355cc23eda60e2b1d200dce9.tar.gz
emacs-2e5d47f578aa0b60355cc23eda60e2b1d200dce9.zip
; * doc/lispintro/emacs-lisp-intro.texi (copy-to-buffer): Fix last change.
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index ba93dfd3b91..7563d66bad1 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -5447,9 +5447,9 @@ as the one to which you are copying, or if such a buffer does not
5447exist, to create it. Then, the @code{with-current-buffer} function 5447exist, to create it. Then, the @code{with-current-buffer} function
5448evaluates its body with that buffer temporarily current, after which 5448evaluates its body with that buffer temporarily current, after which
5449it will switch back to the buffer we are at now@footnote{It is like 5449it will switch back to the buffer we are at now@footnote{It is like
5450calling @code{(save-excursion (set-buffer ...) ...)} in one go, though 5450calling @w{@code{(save-excursion (set-buffer @dots{}) @dots{})}} in
5451it is defined slightly differently which interested reader can find 5451one go, though it is defined slightly differently which interested
5452out using @code{describe-function}}. 5452reader can find out using @code{describe-function}.}.
5453 5453
5454(This demonstrates another way to shift the computer's attention but 5454(This demonstrates another way to shift the computer's attention but
5455not the user's. The @code{append-to-buffer} function showed how to do 5455not the user's. The @code{append-to-buffer} function showed how to do