Mercurial > emacs
changeset 107520:77fe45f37334
xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around XLoadQueryFont.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Sat, 20 Mar 2010 12:37:39 +0900 |
parents | 653d35986c98 |
children | 54f3a4d055ee |
files | src/ChangeLog src/xfns.c |
diffstat | 2 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Mar 19 11:27:49 2010 -0400 +++ b/src/ChangeLog Sat Mar 20 12:37:39 2010 +0900 @@ -1,3 +1,8 @@ +2010-03-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> + + * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around + XLoadQueryFont. + 2010-03-16 Kenichi Handa <handa@m17n.org> * coding.c (decode_coding_ccl): Fix previous change for the
--- a/src/xfns.c Fri Mar 19 11:27:49 2010 -0400 +++ b/src/xfns.c Sat Mar 20 12:37:39 2010 +0900 @@ -3347,7 +3347,9 @@ #ifdef USE_LUCID /* Prevent lwlib/xlwmenu.c from crashing because of a bug whereby it fails to get any font. */ + BLOCK_INPUT; xlwmenu_default_font = XLoadQueryFont (FRAME_X_DISPLAY (f), "fixed"); + UNBLOCK_INPUT; #endif /* Frame contents get displaced if an embedded X window has a border. */