aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorXue Fuqiao2015-08-23 19:21:33 +0800
committerXue Fuqiao2015-08-23 19:21:33 +0800
commitef00774df4582592ac675fbe803ecc887e0e248a (patch)
tree48cace2952bfdd6ab001c15717f38a50c4ca8928 /doc
parent2f0d41ea4fd47bbc53a53d7634869b21cf03c1a0 (diff)
downloademacs-ef00774df4582592ac675fbe803ecc887e0e248a.tar.gz
emacs-ef00774df4582592ac675fbe803ecc887e0e248a.zip
* doc/lispintro/emacs-lisp-intro.texi (Switching Buffers): Clarify
"invisible window".
Diffstat (limited to 'doc')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 183e68f6660..a9f02f5e848 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -2840,10 +2840,10 @@ following more complex expression:
2840@c noindent 2840@c noindent
2841In this case, the first argument to @code{other-buffer} tells it which 2841In this case, the first argument to @code{other-buffer} tells it which
2842buffer to skip---the current one---and the second argument tells 2842buffer to skip---the current one---and the second argument tells
2843@code{other-buffer} it is OK to switch to a visible buffer. 2843@code{other-buffer} it is OK to switch to a visible buffer. In
2844In regular use, @code{switch-to-buffer} takes you to an invisible 2844regular use, @code{switch-to-buffer} takes you to a buffer not visible
2845window since you would most likely use @kbd{C-x o} (@code{other-window}) 2845in windows since you would most likely use @kbd{C-x o}
2846to go to another visible buffer.} 2846(@code{other-window}) to go to another visible buffer.}
2847 2847
2848In the programming examples in later sections of this document, you will 2848In the programming examples in later sections of this document, you will
2849see the function @code{set-buffer} more often than 2849see the function @code{set-buffer} more often than