diff options
| author | Richard M. Stallman | 2001-06-02 20:55:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-06-02 20:55:48 +0000 |
| commit | ab25a0c78f8e779aa34fb2cd5d6b0ae9e3685594 (patch) | |
| tree | aced34896744943af6be614eb545a1aef23ead02 | |
| parent | 66e46e195182bc8f3fc5328d6576235d06cb3562 (diff) | |
| download | emacs-ab25a0c78f8e779aa34fb2cd5d6b0ae9e3685594.tar.gz emacs-ab25a0c78f8e779aa34fb2cd5d6b0ae9e3685594.zip | |
selected buffer <=> current buffer.
| -rw-r--r-- | man/buffers.texi | 29 | ||||
| -rw-r--r-- | man/vip.texi | 4 |
2 files changed, 17 insertions, 16 deletions
diff --git a/man/buffers.texi b/man/buffers.texi index 0afe99bcea6..8ddbe0b42d0 100644 --- a/man/buffers.texi +++ b/man/buffers.texi | |||
| @@ -15,14 +15,14 @@ command's documentation, that appears in a buffer called @samp{*Help*}. | |||
| 15 | 15 | ||
| 16 | @cindex selected buffer | 16 | @cindex selected buffer |
| 17 | @cindex current buffer | 17 | @cindex current buffer |
| 18 | At any time, one and only one buffer is @dfn{selected}. It is also | 18 | At any time, one and only one buffer is @dfn{current}. It is also |
| 19 | called the @dfn{current buffer}. Often we say that a command operates on | 19 | called the @dfn{selected buffer}. Often we say that a command operates on |
| 20 | ``the buffer'' as if there were only one; but really this means that the | 20 | ``the buffer'' as if there were only one; but really this means that the |
| 21 | command operates on the selected buffer (most commands do). | 21 | command operates on the current buffer (most commands do). |
| 22 | 22 | ||
| 23 | When Emacs has multiple windows, each window has its own chosen | 23 | When Emacs has multiple windows, each window has its own chosen |
| 24 | buffer and displays it; at any time, only one of the windows is | 24 | buffer and displays it; at any time, only one of the windows is |
| 25 | selected, and its chosen buffer is the selected buffer. Each window's | 25 | selected, and its chosen buffer is the current buffer. Each window's |
| 26 | mode line normally displays the name of the window's chosen buffer | 26 | mode line normally displays the name of the window's chosen buffer |
| 27 | (@pxref{Windows}). | 27 | (@pxref{Windows}). |
| 28 | 28 | ||
| @@ -81,8 +81,8 @@ Similar, but select @var{buffer} in a separate frame | |||
| 81 | @key{RET}}. This runs the command @code{switch-to-buffer} with argument | 81 | @key{RET}}. This runs the command @code{switch-to-buffer} with argument |
| 82 | @var{bufname}. You can use completion on an abbreviation for the buffer | 82 | @var{bufname}. You can use completion on an abbreviation for the buffer |
| 83 | name you want (@pxref{Completion}). An empty argument to @kbd{C-x b} | 83 | name you want (@pxref{Completion}). An empty argument to @kbd{C-x b} |
| 84 | specifies the most recently selected buffer that is not displayed in any | 84 | specifies the buffer that was current most recently among those not |
| 85 | window.@refill | 85 | now displayed in any window. |
| 86 | 86 | ||
| 87 | @kindex C-x 4 b | 87 | @kindex C-x 4 b |
| 88 | @findex switch-to-buffer-other-window | 88 | @findex switch-to-buffer-other-window |
| @@ -149,7 +149,7 @@ buffers that were current most recently come first. | |||
| 149 | @samp{*} at the beginning of a line indicates the buffer is ``modified.'' | 149 | @samp{*} at the beginning of a line indicates the buffer is ``modified.'' |
| 150 | If several buffers are modified, it may be time to save some with @kbd{C-x s} | 150 | If several buffers are modified, it may be time to save some with @kbd{C-x s} |
| 151 | (@pxref{Saving}). @samp{%} indicates a read-only buffer. @samp{.} marks the | 151 | (@pxref{Saving}). @samp{%} indicates a read-only buffer. @samp{.} marks the |
| 152 | selected buffer. Here is an example of a buffer list:@refill | 152 | current buffer. Here is an example of a buffer list:@refill |
| 153 | 153 | ||
| 154 | @smallexample | 154 | @smallexample |
| 155 | MR Buffer Size Mode File | 155 | MR Buffer Size Mode File |
| @@ -262,12 +262,13 @@ Offer to kill each buffer, one by one. | |||
| 262 | @kindex C-x k | 262 | @kindex C-x k |
| 263 | 263 | ||
| 264 | @kbd{C-x k} (@code{kill-buffer}) kills one buffer, whose name you | 264 | @kbd{C-x k} (@code{kill-buffer}) kills one buffer, whose name you |
| 265 | specify in the minibuffer. The default, used if you type just @key{RET} | 265 | specify in the minibuffer. The default, used if you type just |
| 266 | in the minibuffer, is to kill the current buffer. If you kill the | 266 | @key{RET} in the minibuffer, is to kill the current buffer. If you |
| 267 | current buffer, another buffer is selected; one that has been selected | 267 | kill the current buffer, another buffer becomes current: one that was |
| 268 | recently but does not appear in any window now. If you ask to kill a | 268 | current in the recent past but is not displayed in any window now. If |
| 269 | file-visiting buffer that is modified (has unsaved editing), then you | 269 | you ask to kill a file-visiting buffer that is modified (has unsaved |
| 270 | must confirm with @kbd{yes} before the buffer is killed. | 270 | editing), then you must confirm with @kbd{yes} before the buffer is |
| 271 | killed. | ||
| 271 | 272 | ||
| 272 | The command @kbd{M-x kill-some-buffers} asks about each buffer, one by | 273 | The command @kbd{M-x kill-some-buffers} asks about each buffer, one by |
| 273 | one. An answer of @kbd{y} means to kill the buffer. Killing the current | 274 | one. An answer of @kbd{y} means to kill the buffer. Killing the current |
| @@ -383,7 +384,7 @@ select the window. | |||
| 383 | Immediately select this line's buffer in a full-screen window. | 384 | Immediately select this line's buffer in a full-screen window. |
| 384 | @item 2 | 385 | @item 2 |
| 385 | Immediately set up two windows, with this line's buffer in one, and the | 386 | Immediately set up two windows, with this line's buffer in one, and the |
| 386 | previously selected buffer (aside from the buffer @samp{*Buffer List*}) | 387 | previously current buffer (aside from the buffer @samp{*Buffer List*}) |
| 387 | in the other. | 388 | in the other. |
| 388 | @item b | 389 | @item b |
| 389 | Bury the buffer listed on this line. | 390 | Bury the buffer listed on this line. |
diff --git a/man/vip.texi b/man/vip.texi index 6b423908a4d..349caeca4ef 100644 --- a/man/vip.texi +++ b/man/vip.texi | |||
| @@ -784,8 +784,8 @@ typing @kbd{\}. Thus @kbd{5 \ +}, as well as @kbd{\ C-u 5 +}, will insert | |||
| 784 | @cindex current buffer | 784 | @cindex current buffer |
| 785 | 785 | ||
| 786 | In Emacs the text you edit is stored in a @dfn{buffer}. | 786 | In Emacs the text you edit is stored in a @dfn{buffer}. |
| 787 | See GNU Emacs Manual, for details. There is always one @dfn{selected} | 787 | See GNU Emacs Manual, for details. There is always one @dfn{current} |
| 788 | buffer which is called the @dfn{current buffer}.@refill | 788 | buffer, also called the @dfn{selected buffer}.@refill |
| 789 | 789 | ||
| 790 | @cindex window | 790 | @cindex window |
| 791 | @cindex modified (buffer) | 791 | @cindex modified (buffer) |