diff options
| -rw-r--r-- | doc/emacs/basic.texi | 6 | ||||
| -rw-r--r-- | doc/emacs/display.texi | 19 | ||||
| -rw-r--r-- | doc/emacs/mark.texi | 6 | ||||
| -rw-r--r-- | doc/emacs/regs.texi | 4 |
4 files changed, 18 insertions, 17 deletions
diff --git a/doc/emacs/basic.texi b/doc/emacs/basic.texi index 86403b7a23d..3728144b797 100644 --- a/doc/emacs/basic.texi +++ b/doc/emacs/basic.texi | |||
| @@ -816,9 +816,9 @@ more convenient, and they are documented in that command's | |||
| 816 | documentation string. | 816 | documentation string. |
| 817 | 817 | ||
| 818 | We use the term @dfn{prefix argument} to emphasize that you type | 818 | We use the term @dfn{prefix argument} to emphasize that you type |
| 819 | such arguments before the command, and to distinguish them from | 819 | such arguments @emph{before} the command, and to distinguish them from |
| 820 | minibuffer arguments (@pxref{Minibuffer}), which are entered after | 820 | minibuffer arguments (@pxref{Minibuffer}), which are entered |
| 821 | invoking the command. | 821 | @emph{after} invoking the command. |
| 822 | 822 | ||
| 823 | On graphical displays, @kbd{C-0}, @kbd{C-1}, etc.@ act the same as | 823 | On graphical displays, @kbd{C-0}, @kbd{C-1}, etc.@ act the same as |
| 824 | @kbd{M-0}, @kbd{M-1}, etc. | 824 | @kbd{M-0}, @kbd{M-1}, etc. |
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi index 9cf6baa7e91..f8c620115d3 100644 --- a/doc/emacs/display.texi +++ b/doc/emacs/display.texi | |||
| @@ -199,12 +199,13 @@ screen lines between point and the top or bottom of the window | |||
| 199 | (@pxref{Auto Scrolling}). | 199 | (@pxref{Auto Scrolling}). |
| 200 | 200 | ||
| 201 | You can also give @kbd{C-l} a prefix argument. A plain prefix | 201 | You can also give @kbd{C-l} a prefix argument. A plain prefix |
| 202 | argument, @kbd{C-u C-l}, simply recenters point. A positive argument | 202 | argument, @kbd{C-u C-l}, simply recenters the line showing point. A |
| 203 | @var{n} puts point @var{n} lines down from the top of the window. An | 203 | positive argument @var{n} moves line showing point @var{n} lines down |
| 204 | argument of zero puts point on the topmost line. A negative argument | 204 | from the top of the window. An argument of zero moves point's line to |
| 205 | @var{-n} puts point @var{n} lines from the bottom of the window. When | 205 | the top of the window. A negative argument @var{-n} moves point's |
| 206 | given an argument, @kbd{C-l} does not clear the screen or cycle | 206 | line @var{n} lines from the bottom of the window. When given an |
| 207 | through different screen positions. | 207 | argument, @kbd{C-l} does not clear the screen or cycle through |
| 208 | different screen positions. | ||
| 208 | 209 | ||
| 209 | @vindex recenter-redisplay | 210 | @vindex recenter-redisplay |
| 210 | If the variable @code{recenter-redisplay} has a non-@code{nil} | 211 | If the variable @code{recenter-redisplay} has a non-@code{nil} |
| @@ -1484,9 +1485,9 @@ a new line, while the tab character (@code{U+0009}) is displayed as a | |||
| 1484 | space that extends to the next tab stop column (normally every 8 | 1485 | space that extends to the next tab stop column (normally every 8 |
| 1485 | columns). The number of spaces per tab is controlled by the | 1486 | columns). The number of spaces per tab is controlled by the |
| 1486 | buffer-local variable @code{tab-width}, which must have an integer | 1487 | buffer-local variable @code{tab-width}, which must have an integer |
| 1487 | value between 1 and 1000, inclusive. Note that how the tab character | 1488 | value between 1 and 1000, inclusive. Note that the way the tab |
| 1488 | in the buffer is displayed has nothing to do with the definition of | 1489 | character in the buffer is displayed has nothing to do with the |
| 1489 | @key{TAB} as a command. | 1490 | definition of @key{TAB} as a command. |
| 1490 | 1491 | ||
| 1491 | Other @acronym{ASCII} control characters, whose codes are below | 1492 | Other @acronym{ASCII} control characters, whose codes are below |
| 1492 | @code{U+0020} (octal 40, decimal 32), are displayed as a caret | 1493 | @code{U+0020} (octal 40, decimal 32), are displayed as a caret |
diff --git a/doc/emacs/mark.texi b/doc/emacs/mark.texi index 5ffe7264a35..8ad5fc7c9e4 100644 --- a/doc/emacs/mark.texi +++ b/doc/emacs/mark.texi | |||
| @@ -420,9 +420,9 @@ commands. | |||
| 420 | The default behavior of the mark and region, in which setting the | 420 | The default behavior of the mark and region, in which setting the |
| 421 | mark activates it and highlights the region, is called Transient Mark | 421 | mark activates it and highlights the region, is called Transient Mark |
| 422 | mode. This is a minor mode that is enabled by default. It can be | 422 | mode. This is a minor mode that is enabled by default. It can be |
| 423 | toggled with @kbd{M-x transient-mark-mode}, or with the @samp{Active | 423 | toggled with @kbd{M-x transient-mark-mode}, or with the |
| 424 | Region Highlighting} menu item in the @samp{Options} menu. Turning it | 424 | @samp{Highlight Active Region} menu item in the @samp{Options} menu. |
| 425 | off switches Emacs to an alternative mode of operation: | 425 | Turning it off switches Emacs to an alternative mode of operation: |
| 426 | 426 | ||
| 427 | @itemize @bullet | 427 | @itemize @bullet |
| 428 | @item | 428 | @item |
diff --git a/doc/emacs/regs.texi b/doc/emacs/regs.texi index b9d0afe42ee..b47e5d30b2d 100644 --- a/doc/emacs/regs.texi +++ b/doc/emacs/regs.texi | |||
| @@ -152,7 +152,7 @@ during the collection process, you can use the following setting. | |||
| 152 | @findex insert-register | 152 | @findex insert-register |
| 153 | @kbd{C-x r i @var{r}} inserts in the buffer the text from register | 153 | @kbd{C-x r i @var{r}} inserts in the buffer the text from register |
| 154 | @var{r}. Normally it leaves point after the text and sets the mark | 154 | @var{r}. Normally it leaves point after the text and sets the mark |
| 155 | before, without activating it. With a numeric argument, it instead | 155 | before, without activating it. With a prefix argument, it instead |
| 156 | puts point before the text and the mark after. | 156 | puts point before the text and the mark after. |
| 157 | 157 | ||
| 158 | @node Rectangle Registers | 158 | @node Rectangle Registers |
| @@ -168,7 +168,7 @@ in the buffer. | |||
| 168 | @kindex C-x r r | 168 | @kindex C-x r r |
| 169 | @item C-x r r @var{r} | 169 | @item C-x r r @var{r} |
| 170 | Copy the region-rectangle into register @var{r} | 170 | Copy the region-rectangle into register @var{r} |
| 171 | (@code{copy-rectangle-to-register}). With numeric argument, delete it as | 171 | (@code{copy-rectangle-to-register}). With prefix argument, delete it as |
| 172 | well. | 172 | well. |
| 173 | @item C-x r i @var{r} | 173 | @item C-x r i @var{r} |
| 174 | Insert the rectangle stored in register @var{r} (if it contains a | 174 | Insert the rectangle stored in register @var{r} (if it contains a |