aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/ChangeLog9
-rw-r--r--man/buffers.texi19
2 files changed, 22 insertions, 6 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 03069fa86ac..eead2deac38 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,12 @@
12004-08-21 Luc Teirlinck <teirllm@auburn.edu>
2
3 * buffers.texi (Buffers): Maximum buffer size is now 256M on
4 32-bit machines.
5 (Several Buffers): Clarify which buffer is selected if `2' is
6 pressed in the Buffer Menu.
7 Auto Revert mode can be used to update the Buffer Menu
8 automatically.
9
12004-08-21 Eli Zaretskii <eliz@gnu.org> 102004-08-21 Eli Zaretskii <eliz@gnu.org>
2 11
3 * help.texi (Misc Help): Add an index entry for finding an Info 12 * help.texi (Misc Help): Add an index entry for finding an Info
diff --git a/man/buffers.texi b/man/buffers.texi
index c2d2a3f76e3..558b636de60 100644
--- a/man/buffers.texi
+++ b/man/buffers.texi
@@ -1,5 +1,5 @@
1@c This is part of the Emacs manual. 1@c This is part of the Emacs manual.
2@c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000, 2001 2@c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000, 2001, 2004
3@c Free Software Foundation, Inc. 3@c Free Software Foundation, Inc.
4@c See file emacs.texi for copying conditions. 4@c See file emacs.texi for copying conditions.
5@node Buffers, Windows, Files, Top 5@node Buffers, Windows, Files, Top
@@ -44,7 +44,7 @@ the value in other buffers. @xref{Locals}.
44 A buffer's size cannot be larger than some maximum, which is defined 44 A buffer's size cannot be larger than some maximum, which is defined
45by the largest buffer position representable by the @dfn{Emacs integer} 45by the largest buffer position representable by the @dfn{Emacs integer}
46data type. This is because Emacs tracks buffer positions using that 46data type. This is because Emacs tracks buffer positions using that
47data type. For 32-bit machines, the largest buffer size is 128 47data type. For 32-bit machines, the largest buffer size is 256
48megabytes. 48megabytes.
49 49
50@menu 50@menu
@@ -395,9 +395,9 @@ select the window.
395@item 1 395@item 1
396Immediately select this line's buffer in a full-screen window. 396Immediately select this line's buffer in a full-screen window.
397@item 2 397@item 2
398Immediately set up two windows, with this line's buffer in one, and the 398Immediately set up two windows, with this line's buffer selected in
399previously current buffer (aside from the buffer @samp{*Buffer List*}) 399one, and the previously current buffer (aside from the buffer
400in the other. 400@samp{*Buffer List*}) displayed in the other.
401@item b 401@item b
402Bury the buffer listed on this line. 402Bury the buffer listed on this line.
403@item m 403@item m
@@ -427,12 +427,19 @@ window. If you run @code{list-buffers} (that is, type @kbd{C-x C-b})
427and select the buffer list manually, you can use all of the commands 427and select the buffer list manually, you can use all of the commands
428described here. 428described here.
429 429
430 The buffer @samp{*Buffer List*} is not updated automatically when 430 Normally, the buffer @samp{*Buffer List*} is not updated automatically when
431buffers are created and killed; its contents are just text. If you have 431buffers are created and killed; its contents are just text. If you have
432created, deleted or renamed buffers, the way to update @samp{*Buffer 432created, deleted or renamed buffers, the way to update @samp{*Buffer
433List*} to show what you have done is to type @kbd{g} 433List*} to show what you have done is to type @kbd{g}
434(@code{revert-buffer}) or repeat the @code{buffer-menu} command. 434(@code{revert-buffer}) or repeat the @code{buffer-menu} command.
435 435
436 The @samp{*Buffer List*} buffer does automatically update every
437@code{auto-revert-interval} seconds if you enable Auto Revert mode in
438it. (As long as it is not marked modified.) Global Auto Revert mode
439does not update the @samp{*Buffer List*} buffer by default, but it
440does if @code{global-auto-revert-non-file-buffers} is non-@code{nil}.
441@inforef{Autorevert,, emacs-xtra}, for details.
442
436 The command @code{buffer-menu-other-window} works the same as 443 The command @code{buffer-menu-other-window} works the same as
437@code{buffer-menu}, except that it displays the buffers list in 444@code{buffer-menu}, except that it displays the buffers list in
438another window. 445another window.