aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2007-02-22 11:23:11 +0000
committerKim F. Storm <[email protected]>2007-02-22 11:23:11 +0000
commitc615a9e355fed3d8d9dae8db32dca26ab0b30648 (patch)
tree30efd3e3dbed1b2004253ef8a5e3397f96738d6f /src
parent768796657eef52a66d89f5f95a47eebcb64e7f28 (diff)
From: Daniel Brockman <[email protected]> (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 b018735c3c..4ff3afd472 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -762,8 +762,8 @@ static struct props it_props[] =
/* Handle `face' before `display' because some sub-properties of
`display' need to know the face. */
{&Qface, FACE_PROP_IDX, handle_face_prop},
- {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
{&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
+ {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
{&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
{NULL, 0, NULL}
};