]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix scroll-margin docstring (Bug#13791)
authorNoam Postavsky <npostavs@gmail.com>
Mon, 29 Jan 2018 23:49:46 +0000 (18:49 -0500)
committerNoam Postavsky <npostavs@gmail.com>
Wed, 31 Jan 2018 03:29:13 +0000 (22:29 -0500)
* src/xdisp.c (syms_of_xdisp) <scroll-margin>: Explain that entering
the margin may trigger any sort of auto scrolling, not recentering
specifically.

src/xdisp.c

index 903815c6581e292b1d00e365890df0a74134e590..7511e54ab1d21df8139cfdadc76af0c9356a6760 100644 (file)
@@ -32527,8 +32527,8 @@ A value of zero means always recenter point if it moves off screen.  */);
 
   DEFVAR_INT ("scroll-margin", scroll_margin,
     doc: /* Number of lines of margin at the top and bottom of a window.
-Recenter the window whenever point gets within this many lines
-of the top or bottom of the window.  */);
+Trigger automatic scrolling whenever point gets within this many lines
+of the top or bottom of the window (see info node `Auto Scrolling').  */);
   scroll_margin = 0;
 
   DEFVAR_LISP ("maximum-scroll-margin", Vmaximum_scroll_margin,