diff options
author | Kim F. Storm <storm@cua.dk> | 2007-02-22 11:23:11 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2007-02-22 11:23:11 +0000 |
commit | c615a9e355fed3d8d9dae8db32dca26ab0b30648 (patch) | |
tree | 30efd3e3dbed1b2004253ef8a5e3397f96738d6f /src/xdisp.c | |
parent | 768796657eef52a66d89f5f95a47eebcb64e7f28 (diff) | |
download | emacs-c615a9e355fed3d8d9dae8db32dca26ab0b30648.tar.gz |
From: Daniel Brockman <daniel@brockman.se> (tiny change)
(it_props): Handle invisible property before display property.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 2 |
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[] = /* 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} }; |