From: Romain Francoise Date: Tue, 13 Dec 2005 20:48:20 +0000 (+0000) Subject: (Scrolling only one line): Use `scroll-conservatively'. X-Git-Tag: emacs-pretest-22.0.90~5297 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=156d1e47fb1a0d1a07963facb31a02a83358ed0a;p=emacs.git (Scrolling only one line): Use `scroll-conservatively'. --- diff --git a/man/ChangeLog b/man/ChangeLog index 7ac185e63b2..279055dc6ec 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,7 @@ +2005-12-13 Romain Francoise + + * faq.texi (Scrolling only one line): Use `scroll-conservatively'. + 2005-12-12 Jay Belanger * faq.texi (Calc): Updated version number. diff --git a/man/faq.texi b/man/faq.texi index 1ec859ea289..31d1c518d92 100644 --- a/man/faq.texi +++ b/man/faq.texi @@ -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}