aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorKim F. Storm2004-09-27 13:28:10 +0000
committerKim F. Storm2004-09-27 13:28:10 +0000
commitb2229037362245da8e56fb0a06e779065640285c (patch)
tree653bca6d3241bc1114985a6b29663f3a7347411b /src/buffer.c
parent4d96559091c960b351f137a861bedd71f4825dfb (diff)
downloademacs-b2229037362245da8e56fb0a06e779065640285c.tar.gz
emacs-b2229037362245da8e56fb0a06e779065640285c.zip
(syms_of_buffer) <indicate-buffer-boundaries>:
Doc fix. Format may now be a symbol or alist, not a cons.
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 b1c453816ce..b0368a842ca 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5682,16 +5682,20 @@ If non-nil, the first and last line of the buffer are marked in the fringe
5682of a window on window-systems with angle bitmaps, or if the window can be 5682of a window on window-systems with angle bitmaps, or if the window can be
5683scrolled, the top and bottom line of the window are marked with up and down 5683scrolled, the top and bottom line of the window are marked with up and down
5684arrow bitmaps. 5684arrow bitmaps.
5685If value is `left' or `right', both angle and arrow bitmaps are displayed in 5685
5686the left or right fringe, resp. Any other non-nil value causes the 5686If value is a symbol `left' or `right', both angle and arrow bitmaps
5687bitmap on the top line to be displayed in the left fringe, and the 5687are displayed in the left or right fringe, resp.
5688bitmap on the bottom line in the right fringe. 5688
5689If value is a cons (ANGLES . ARROWS), the car specifies the position 5689If value is an alist, each element (INDICATOR . POSITION) specifies
5690of the angle bitmaps, and the cdr specifies the position of the arrow 5690the position of one of the indicators. INDICATOR is one of `top',
5691bitmaps. For example, (t . right) places the top angle bitmap in left 5691`bottom', `up', `down', or t, which specifies the default position,
5692fringe, the bottom angle bitmap in right fringe, and both arrow 5692and POSITION is one of `left', `right', or nil, meaning do not show
5693this indicator.
5694
5695For example, ((top . left) (t . right)) places the top angle bitmap in
5696left fringe, the bottom angle bitmap in right fringe, and both arrow
5693bitmaps in right fringe. To show just the angle bitmaps in the left 5697bitmaps in right fringe. To show just the angle bitmaps in the left
5694fringe, but no arrow bitmaps, use (left . nil). */); 5698fringe, but no arrow bitmaps, use ((top . left) (bottom . left)). */);
5695 5699
5696 DEFVAR_PER_BUFFER ("scroll-up-aggressively", 5700 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
5697 &current_buffer->scroll_up_aggressively, Qnil, 5701 &current_buffer->scroll_up_aggressively, Qnil,