aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2007-02-22 11:23:11 +0000
committerKim F. Storm2007-02-22 11:23:11 +0000
commitc615a9e355fed3d8d9dae8db32dca26ab0b30648 (patch)
tree30efd3e3dbed1b2004253ef8a5e3397f96738d6f /src
parent768796657eef52a66d89f5f95a47eebcb64e7f28 (diff)
downloademacs-c615a9e355fed3d8d9dae8db32dca26ab0b30648.tar.gz
emacs-c615a9e355fed3d8d9dae8db32dca26ab0b30648.zip
From: Daniel Brockman <daniel@brockman.se> (tiny change)
(it_props): Handle invisible property before display property.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index b018735c3c6..4ff3afd472b 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -762,8 +762,8 @@ static struct props it_props[] =
762 /* Handle `face' before `display' because some sub-properties of 762 /* Handle `face' before `display' because some sub-properties of
763 `display' need to know the face. */ 763 `display' need to know the face. */
764 {&Qface, FACE_PROP_IDX, handle_face_prop}, 764 {&Qface, FACE_PROP_IDX, handle_face_prop},
765 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
766 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop}, 765 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
766 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
767 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop}, 767 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
768 {NULL, 0, NULL} 768 {NULL, 0, NULL}
769}; 769};