]> git.eshelyaron.com Git - emacs.git/commitdiff
(Scrolling only one line): Use `scroll-conservatively'.
authorRomain Francoise <romain@orebokech.com>
Tue, 13 Dec 2005 20:48:20 +0000 (20:48 +0000)
committerRomain Francoise <romain@orebokech.com>
Tue, 13 Dec 2005 20:48:20 +0000 (20:48 +0000)
man/ChangeLog
man/faq.texi

index 7ac185e63b2d97669feeedd28fb15e647f1b5131..279055dc6ecd09ba35fa22946c717615f29dff3e 100644 (file)
@@ -1,3 +1,7 @@
+2005-12-13  Romain Francoise  <romain@orebokech.com>
+
+       * faq.texi (Scrolling only one line): Use `scroll-conservatively'.
+
 2005-12-12  Jay Belanger  <belanger@truman.edu>
 
        * faq.texi (Calc): Updated version number.
index 1ec859ea2894c800ab1eb899ec9d4f305eea639e..31d1c518d92c92f88a7784e26c0e8618e6d36ebb 100644 (file)
@@ -2503,14 +2503,17 @@ consult the documentation of the variables @code{ps-printer-name},
 @cindex Scrolling only one line
 @cindex Reducing the increment when scrolling
 
-Place the following Lisp form in your @file{.emacs} file:
+Customize the @code{scroll-conservatively} variable with @kbd{M-x
+customize-variable @key{RET} scroll-conservatively @key{RET}} and set it
+to a large value like, say, 10000.  For an explanation of what this
+means, @inforef{Scrolling, Scrolling, emacs}.
+
+Alternatively, use the following Lisp form in your @file{.emacs}:
 
 @lisp
-(setq scroll-step 1)
+(setq scroll-conservatively most-positive-fixnum)
 @end lisp
 
-@inforef{Scrolling, Scrolling, emacs}.
-
 @node Replacing highlighted text, Editing MS-DOS files, Scrolling only one line, Common requests
 @section How can I replace highlighted text with what I type?
 @cindex @code{delete-selection-mode}