aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-09-09 18:26:51 +0000
committerRichard M. Stallman2006-09-09 18:26:51 +0000
commitab1ea94e3a56d37e9a7cd2906db9843d79e8fbd7 (patch)
treed41f29f4d791163f2230774736791387043d5949
parent4248ca0c2f57ea1f62afab346275196c06cb1bf3 (diff)
downloademacs-ab1ea94e3a56d37e9a7cd2906db9843d79e8fbd7.tar.gz
emacs-ab1ea94e3a56d37e9a7cd2906db9843d79e8fbd7.zip
(Fringe Indicators): Update for last change in indicate-buffer-boundaries.
-rw-r--r--lispref/display.texi32
1 files changed, 19 insertions, 13 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 5865f9c6854..1088c14df82 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -2816,26 +2816,32 @@ In addition, Emacs can display an up-arrow in the fringe to show
2816that there is text above the screen, and a down-arrow to show 2816that there is text above the screen, and a down-arrow to show
2817there is text below the screen. 2817there is text below the screen.
2818 2818
2819There are four kinds of basic values: 2819There are three kinds of basic values:
2820 2820
2821@table @asis 2821@table @asis
2822@item @code{nil} 2822@item @code{nil}
2823Don't display the icons. 2823Don't display any of these fringe icons.
2824@item @code{left} 2824@item @code{left}
2825Display them in the left fringe. 2825Display the angle icons and arrows in the left fringe.
2826@item @code{right} 2826@item @code{right}
2827Display them in the right fringe. 2827Display the angle icons and arrows in the right fringe.
2828@item @var{anything-else} 2828@item any non-alist
2829Display the icon at the top of the window top in the left fringe, and other 2829Display the angle icons in the left fringe
2830in the right fringe. 2830and don't display the arrows.
2831@end table 2831@end table
2832 2832
2833If value is a cons @code{(@var{angles} . @var{arrows})}, @var{angles} 2833Otherwise the value should be an alist that specifies which fringe
2834controls the angle icons, and @var{arrows} controls the arrows. Both 2834indicators to display and where. Each element of the alist should
2835@var{angles} and @var{arrows} work according to the table above. 2835have the form @code{(@var{indicator} . @var{position})}. Here,
2836Thus, @code{(t . right)} places the top angle icon in the left 2836@var{indicator} is one of @code{top}, @code{bottom}, @code{up},
2837fringe, the bottom angle icon in the right fringe, and both arrows in 2837@code{down}, and @code{t} (which covers all the icons not yet
2838the right fringe. 2838specified), while @var{position} is one of @code{left}, @code{right}
2839and @code{nil}.
2840
2841For example, @code{((top . left) (t . right))} places the top angle
2842bitmap in left fringe, and the bottom angle bitmap as well as both
2843arrow bitmaps in right fringe. To show the angle bitmaps in the left
2844fringe, and no arrow bitmaps, use @code{((top . left) (bottom . left))}.
2839@end defvar 2845@end defvar
2840 2846
2841@defvar default-indicate-buffer-boundaries 2847@defvar default-indicate-buffer-boundaries