comparison lispref/display.texi @ 29076:c7c150b377c0

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Mon, 22 May 2000 11:30:12 +0000
parents f870c858cfdf
children ba9cfbfc601e
comparison
equal deleted inserted replaced
29075:f925348e54c8 29076:c7c150b377c0
893 @item evaporate 893 @item evaporate
894 @kindex evaporate @r{(overlay property)} 894 @kindex evaporate @r{(overlay property)}
895 If this property is non-@code{nil}, the overlay is deleted automatically 895 If this property is non-@code{nil}, the overlay is deleted automatically
896 if it ever becomes empty (i.e., if it spans no characters). 896 if it ever becomes empty (i.e., if it spans no characters).
897 897
898 @item keymap
899 @cindex keymap of character (and overlays)
900 @kindex keymap @r{(overlay property)}
901 If this property is non-@code{nil}, it specifies a keymap for a portion
902 of the text. The property's value replaces the buffer's local map, when
903 the character after point is within the overlay. @xref{Active Keymaps}.
904 @end table
905
898 @item local-map 906 @item local-map
899 @cindex keymap of character (and overlays) 907 @cindex keymap of character (and overlays)
900 @kindex local-map @r{(overlay property)} 908 @kindex local-map @r{(overlay property)}
901 If this property is non-@code{nil}, it specifies a keymap for a portion 909 This property is like the @code{keymap} property, except that it doesn't
902 of the text. The property's value replaces the buffer's local map, when 910 replace the buffer's local map. Keys not defined in the keymap
903 the character after point is within the overlay. @xref{Active Keymaps}. 911 specified with @code{local-map} are looked up in the buffer's local map.
904 @end table 912 @end table
905 913
906 @node Managing Overlays 914 @node Managing Overlays
907 @subsection Managing Overlays 915 @subsection Managing Overlays
908 916