# HG changeset patch # User Martin Rudalics # Date 1220171245 0 # Node ID 587fdfd5e2b948be33d6ff0e352bcb0f231f0a06 # Parent 3744f8613c088184ba07fc719a122e522f11bfc0 (prepare_menu_bars): Don't call Vwindow_size_change_functions with arg Qt. diff -r 3744f8613c08 -r 587fdfd5e2b9 src/xdisp.c --- a/src/xdisp.c Sun Aug 31 02:13:38 2008 +0000 +++ b/src/xdisp.c Sun Aug 31 08:27:25 2008 +0000 @@ -5920,7 +5920,7 @@ { /* Automatic composition with glyph-string. */ Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id); - + it->face_id = face_for_font (it->f, LGSTRING_FONT (gstring), face); } else @@ -9523,7 +9523,8 @@ while (CONSP (functions)) { - call1 (XCAR (functions), frame); + if (!EQ (XCAR (functions), Qt)) + call1 (XCAR (functions), frame); functions = XCDR (functions); } UNGCPRO;