diff options
| author | Eli Zaretskii | 2002-03-03 17:36:21 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-03-03 17:36:21 +0000 |
| commit | c86cd4e4589fbb1a9b30ff70bde77ebe7739cc95 (patch) | |
| tree | 03c2fde64f726e14e326783cf196eefd7e04fd79 | |
| parent | 63d5d1ee500952b0a96c6990910a54f945496075 (diff) | |
| download | emacs-c86cd4e4589fbb1a9b30ff70bde77ebe7739cc95.tar.gz emacs-c86cd4e4589fbb1a9b30ff70bde77ebe7739cc95.zip | |
(Horizontal Scrolling): Rename automatic-hscrolling, automatic-hscroll-step
and automatic-hscroll-margin to, respectively, auto-hscroll-mode,
hscroll-step, and hscroll-margin.
| -rw-r--r-- | man/display.texi | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/man/display.texi b/man/display.texi index 13a2ad7ddfa..3bc68079fe7 100644 --- a/man/display.texi +++ b/man/display.texi | |||
| @@ -640,24 +640,24 @@ for automatic horizontal scrolling. Automatic scrolling will continue | |||
| 640 | to scroll the window, but never farther to the right than the amount | 640 | to scroll the window, but never farther to the right than the amount |
| 641 | you previously set by @code{scroll-left}. | 641 | you previously set by @code{scroll-left}. |
| 642 | 642 | ||
| 643 | @vindex automatic-hscroll-margin | 643 | @vindex hscroll-margin |
| 644 | The value of the variable @code{automatic-hscroll-margin} controls | 644 | The value of the variable @code{hscroll-margin} controls how close |
| 645 | how close to the window's edges point is allowed to get before the | 645 | to the window's edges point is allowed to get before the window will |
| 646 | window will be automatically scrolled. It is measured in columns. | 646 | be automatically scrolled. It is measured in columns. If the value |
| 647 | If the value is 5, then moving point within 5 columns of the edge | 647 | is 5, then moving point within 5 columns of the edge causes horizontal |
| 648 | causes horizontal scrolling away from that edge. | 648 | scrolling away from that edge. |
| 649 | 649 | ||
| 650 | @vindex automatic-hscroll-step | 650 | @vindex hscroll-step |
| 651 | The variable @code{automatic-hscroll-step} determines how many | 651 | The variable @code{hscroll-step} determines how many columns to |
| 652 | columns to scroll the window when point gets too close to the edge. | 652 | scroll the window when point gets too close to the edge. If it's |
| 653 | If it's zero, horizontal scrolling centers point horizontally within | 653 | zero, horizontal scrolling centers point horizontally within the |
| 654 | the window. If it's a positive integer, it specifies the number of | 654 | window. If it's a positive integer, it specifies the number of |
| 655 | columns to scroll by. If it's a floating-point number, it specifies | 655 | columns to scroll by. If it's a floating-point number, it specifies |
| 656 | the fraction of the window's width to scroll by. The default is zero. | 656 | the fraction of the window's width to scroll by. The default is zero. |
| 657 | 657 | ||
| 658 | @vindex automatic-hscrolling | 658 | @vindex auto-hscroll-mode |
| 659 | To disable automatic horizontal scrolling, set the variable | 659 | To disable automatic horizontal scrolling, set the variable |
| 660 | @code{automatic-hscrolling} to @code{nil}. | 660 | @code{auto-hscroll-mode} to @code{nil}. |
| 661 | 661 | ||
| 662 | @node Follow Mode | 662 | @node Follow Mode |
| 663 | @section Follow Mode | 663 | @section Follow Mode |