aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 75339c4fc85..b8aefcdbcca 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5698,16 +5698,20 @@ If non-nil, the first and last line of the buffer are marked in the fringe
5698of a window on window-systems with angle bitmaps, or if the window can be 5698of a window on window-systems with angle bitmaps, or if the window can be
5699scrolled, the top and bottom line of the window are marked with up and down 5699scrolled, the top and bottom line of the window are marked with up and down
5700arrow bitmaps. 5700arrow bitmaps.
5701If value is `left' or `right', both angle and arrow bitmaps are displayed in 5701
5702the left or right fringe, resp. Any other non-nil value causes the 5702If value is a symbol `left' or `right', both angle and arrow bitmaps
5703bitmap on the top line to be displayed in the left fringe, and the 5703are displayed in the left or right fringe, resp.
5704bitmap on the bottom line in the right fringe. 5704
5705If value is a cons (ANGLES . ARROWS), the car specifies the position 5705If value is an alist, each element (INDICATOR . POSITION) specifies
5706of the angle bitmaps, and the cdr specifies the position of the arrow 5706the position of one of the indicators. INDICATOR is one of `top',
5707bitmaps. For example, (t . right) places the top angle bitmap in left 5707`bottom', `up', `down', or t, which specifies the default position,
5708fringe, the bottom angle bitmap in right fringe, and both arrow 5708and POSITION is one of `left', `right', or nil, meaning do not show
5709this indicator.
5710
5711For example, ((top . left) (t . right)) places the top angle bitmap in
5712left fringe, the bottom angle bitmap in right fringe, and both arrow
5709bitmaps in right fringe. To show just the angle bitmaps in the left 5713bitmaps in right fringe. To show just the angle bitmaps in the left
5710fringe, but no arrow bitmaps, use (left . nil). */); 5714fringe, but no arrow bitmaps, use ((top . left) (bottom . left)). */);
5711 5715
5712 DEFVAR_PER_BUFFER ("scroll-up-aggressively", 5716 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
5713 &current_buffer->scroll_up_aggressively, Qnil, 5717 &current_buffer->scroll_up_aggressively, Qnil,