diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-11-25 03:16:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-11-25 03:16:34 +0000 |
commit | 79e3497d3fb13b32cc2dc39ed16787af7ec21b1c (patch) | |
tree | 328d5c556c423a81eaeec8c7385dc2ea52da3143 /src | |
parent | f8684c07a40950d743892d992d2f175f70b7d23e (diff) | |
download | emacs-79e3497d3fb13b32cc2dc39ed16787af7ec21b1c.tar.gz |
(syms_of_buffer) <indicate-buffer-boundaries>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/buffer.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index b0c8c370931..b3b04078036 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -5684,10 +5684,13 @@ scrolled, the top and bottom line of the window are marked with up and down arrow bitmaps. If value is a symbol `left' or `right', both angle and arrow bitmaps -are displayed in the left or right fringe, resp. +are displayed in the left or right fringe, resp. Any other value +that doesn't look like an alist means displat the angle bitmaps in +the left fringe but no arrows. -If value is an alist, each element (INDICATOR . POSITION) specifies -the position of one of the indicators. INDICATOR is one of `top', +You can exercise more precise control by using an alist as the +value. Each alist element (INDICATOR . POSITION) specifies +where to show one of the indicators. INDICATOR is one of `top', `bottom', `up', `down', or t, which specifies the default position, and POSITION is one of `left', `right', or nil, meaning do not show this indicator. |