From c615a9e355fed3d8d9dae8db32dca26ab0b30648 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 22 Feb 2007 11:23:11 +0000 Subject: [PATCH] From: Daniel Brockman (tiny change) (it_props): Handle invisible property before display property. --- src/xdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} }; -- 2.39.5