[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lispref/display.texi
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/lispref/display.texi |
Date: |
Fri, 29 Aug 2003 12:20:56 -0400 |
Index: emacs/lispref/display.texi
diff -c emacs/lispref/display.texi:1.97 emacs/lispref/display.texi:1.98
*** emacs/lispref/display.texi:1.97 Tue Aug 5 23:13:21 2003
--- emacs/lispref/display.texi Fri Aug 29 12:20:56 2003
***************
*** 987,998 ****
@table @code
@item priority
@kindex priority @r{(overlay property)}
! This property's value (which should be a nonnegative number) determines
! the priority of the overlay. The priority matters when two or more
! overlays cover the same character and both specify a face for display;
! the one whose @code{priority} value is larger takes priority over the
! other, and its face attributes override the face attributes of the lower
! priority overlay.
Currently, all overlays take priority over text properties. Please
avoid using negative priority values, as we have not yet decided just
--- 987,1000 ----
@table @code
@item priority
@kindex priority @r{(overlay property)}
! This property's value (which should be a nonnegative integer number)
! determines the priority of the overlay. The priority matters when two
! or more overlays cover the same character and both specify the same
! property; the one whose @code{priority} value is larger takes priority
! over the other. For the @code{face} property, the higher priority
! value does not completely replace the other; instead, its face
! attributes override the face attributes of the lower priority
! @code{face} property.
Currently, all overlays take priority over text properties. Please
avoid using negative priority values, as we have not yet decided just