comparison lispref/display.texi @ 27331:be0a552c8320

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Sun, 16 Jan 2000 00:27:26 +0000
parents 89afca54a135
children 5cfe77eaff45
comparison
equal deleted inserted replaced
27330:960ec5c6503d 27331:be0a552c8320
1007 @result{} 1 1007 @result{} 1
1008 (overlay-end foo) 1008 (overlay-end foo)
1009 @result{} 20 1009 @result{} 20
1010 (overlay-buffer foo) 1010 (overlay-buffer foo)
1011 @result{} #<buffer display.texi> 1011 @result{} #<buffer display.texi>
1012 ;; @r{Moving and deleting the overlay don't change its properties.} 1012 ;; @r{Moving and deleting the overlay does not change its properties.}
1013 (overlay-get foo 'happy) 1013 (overlay-get foo 'happy)
1014 @result{} t 1014 @result{} t
1015 @end example 1015 @end example
1016 1016
1017 @node Finding Overlays 1017 @node Finding Overlays
1409 @code{normal}, @code{semi-light}, @code{light}, @code{extra-light}, 1409 @code{normal}, @code{semi-light}, @code{light}, @code{extra-light},
1410 or @code{ultra-light}. 1410 or @code{ultra-light}.
1411 1411
1412 On a text-only terminal, any weight greater than normal is displayed as 1412 On a text-only terminal, any weight greater than normal is displayed as
1413 extra bright, and any weight less than normal is displayed as 1413 extra bright, and any weight less than normal is displayed as
1414 half-bright (This is provided the terminal supports the feature.)
1415
1416 On a text-only terminal, any weight greater than normal is displayed as
1417 extra bright, and any weight less than normal is displayed as
1418 half-bright (provided the terminal supports the feature). 1414 half-bright (provided the terminal supports the feature).
1419 1415
1420 @item :slant 1416 @item :slant
1421 Font slant---one of the symbols @code{italic}, @code{oblique}, @code{normal}, 1417 Font slant---one of the symbols @code{italic}, @code{oblique}, @code{normal},
1422 @code{reverse-italic}, or @code{reverse-oblique}. 1418 @code{reverse-italic}, or @code{reverse-oblique}.
2690 @defun remove-images start end &optional buffer 2686 @defun remove-images start end &optional buffer
2691 This function removes images in @var{buffer} between positions 2687 This function removes images in @var{buffer} between positions
2692 @var{start} and @var{end}. If @var{buffer} is omitted or @code{nil}, 2688 @var{start} and @var{end}. If @var{buffer} is omitted or @code{nil},
2693 images are removed from the current buffer. 2689 images are removed from the current buffer.
2694 2690
2695 This remove only images that were put into @var{buffer} the way 2691 This removes only images that were put into @var{buffer} the way
2696 @code{put-image} does it, not images that were inserted with 2692 @code{put-image} does it, not images that were inserted with
2697 @code{insert-image} or in other ways. 2693 @code{insert-image} or in other ways.
2698 @end defun 2694 @end defun
2699 2695
2700 @node Image Cache 2696 @node Image Cache
2794 @end defopt 2790 @end defopt
2795 2791
2796 @defopt mode-line-inverse-video 2792 @defopt mode-line-inverse-video
2797 This variable controls the use of inverse video for mode lines and menu 2793 This variable controls the use of inverse video for mode lines and menu
2798 bars. If it is non-@code{nil}, then these lines are displayed in 2794 bars. If it is non-@code{nil}, then these lines are displayed in
2799 inverse video. Otherwise, they lines are displayed normally, just like 2795 inverse video. Otherwise, these lines are displayed normally, just like
2800 other text. The default is @code{t}. 2796 other text. The default is @code{t}.
2801 2797
2802 For window frames, this feature actually applies the face named 2798 For window frames, this feature actually applies the face named
2803 @code{mode-line}; that face is normally set up as the inverse of the 2799 @code{mode-line}; that face is normally set up as the inverse of the
2804 default face, unless you change it. 2800 default face, unless you change it.