aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorKim F. Storm2004-02-15 17:39:43 +0000
committerKim F. Storm2004-02-15 17:39:43 +0000
commitccbc43315d0214cbba337159bb646edcfe735a13 (patch)
tree61b58a5b397f3166a98700896ede18b0d2254397 /src/buffer.c
parent2cc5265869b6a712fdd8a3acb5c59e333e6a40c1 (diff)
downloademacs-ccbc43315d0214cbba337159bb646edcfe735a13.tar.gz
emacs-ccbc43315d0214cbba337159bb646edcfe735a13.zip
(syms_of_buffer): Doc fix for indicate-buffer-boundaries.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5ebcaa819d1..ad1dde93da7 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5639,10 +5639,20 @@ window-systems. */);
5639 DEFVAR_PER_BUFFER ("indicate-buffer-boundaries", 5639 DEFVAR_PER_BUFFER ("indicate-buffer-boundaries",
5640 &current_buffer->indicate_buffer_boundaries, Qnil, 5640 &current_buffer->indicate_buffer_boundaries, Qnil,
5641 doc: /* *Visually indicate buffer boundaries and scrolling. 5641 doc: /* *Visually indicate buffer boundaries and scrolling.
5642If non-nil, the first and last line of the buffer are marked in the left and 5642If non-nil, the first and last line of the buffer are marked in the fringe
5643right fringe of a window on window-systems. 5643of a window on window-systems with angle bitmaps, or if the window can be
5644In addition, if value is t, the top and bottom line of the window are marked 5644scrolled, the top and bottom line of the window are marked with up and down
5645with up and down arrow bitmaps in the right fringe if window can be scrolled. */); 5645arrow bitmaps.
5646If value is `left' or `right', both angle and arrow bitmaps are displayed in
5647the left or right fringe, resp. Any other non-nil value causes the
5648bitmap on the top line to be displayed in the left fringe, and the
5649bitmap on the bottom line in the right fringe.
5650If value is a cons (ANGLES . ARROWS), the car specifies the position
5651of the angle bitmaps, and the cdr specifies the position of the arrow
5652bitmaps. For example, (t . right) places the top angle bitmap in left
5653fringe, the bottom angle bitmap in right fringe, and both arrow
5654bitmaps in right fringe. To show just the angle bitmaps in the left
5655fringe, but no arrow bitmaps, use (left . nil). */);
5646 5656
5647 DEFVAR_PER_BUFFER ("scroll-up-aggressively", 5657 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
5648 &current_buffer->scroll_up_aggressively, Qnil, 5658 &current_buffer->scroll_up_aggressively, Qnil,