aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-06 20:23:10 +0000
committerRichard M. Stallman2003-04-06 20:23:10 +0000
commit2060e50ca2e62553604d2a301ea0a97679292a59 (patch)
tree60851300cacb50408557a320f593b8ec19d520ef
parentd5b213cc0c6f31b09c2fcb8421154273bd778e62 (diff)
downloademacs-2060e50ca2e62553604d2a301ea0a97679292a59.tar.gz
emacs-2060e50ca2e62553604d2a301ea0a97679292a59.zip
Clarify when buffer list is reordered.
-rw-r--r--lispref/buffers.texi15
1 files changed, 8 insertions, 7 deletions
diff --git a/lispref/buffers.texi b/lispref/buffers.texi
index 8a4dc05b459..201975ace54 100644
--- a/lispref/buffers.texi
+++ b/lispref/buffers.texi
@@ -678,13 +678,14 @@ signal an error if the current buffer is read-only.
678@cindex buffer list 678@cindex buffer list
679 679
680 The @dfn{buffer list} is a list of all live buffers. Creating a 680 The @dfn{buffer list} is a list of all live buffers. Creating a
681buffer adds it to this list, and killing a buffer excises it. The order 681buffer adds it to this list, and killing a buffer removes it. The
682of the buffers in the list is based primarily on how recently each 682order of the buffers in the list is based primarily on how recently
683buffer has been displayed in the selected window. Buffers move to the 683each buffer has been displayed in the selected window. Buffers move
684front of the list when they are selected and to the end when they are 684to the front of the list when they are selected (selecting a window
685buried (see @code{bury-buffer}, below). Several functions, notably 685that already displays the buffer counts as selecting the buffer), and
686@code{other-buffer}, use this ordering. A buffer list displayed for the 686to the end when they are buried (see @code{bury-buffer}, below).
687user also follows this order. 687Several functions, notably @code{other-buffer}, use this ordering. A
688buffer list displayed for the user also follows this order.
688 689
689 In addition to the fundamental Emacs buffer list, each frame has its 690 In addition to the fundamental Emacs buffer list, each frame has its
690own version of the buffer list, in which the buffers that have been 691own version of the buffer list, in which the buffers that have been