Mercurial > hg > xemacs-beta
comparison src/frame-msw.c @ 1130:ccd0667b4764
[xemacs-hg @ 2002-11-30 08:10:24 by ben]
To: xemacs-patches@xemacs.org
eval.c: Fix up C debugger entrance -- first output the error message, then
stack trace, then exiting message, then force debugger.
frame-msw.c: Use EQ not EQUAL to avoid
QUIT tripping.
toolbar-msw.c: Indentation fixes.
author | ben |
---|---|
date | Sat, 30 Nov 2002 08:10:26 +0000 |
parents | 37bdd24225ef |
children | e22b0213b713 |
comparison
equal
deleted
inserted
replaced
1129:dcfac2888bf3 | 1130:ccd0667b4764 |
---|---|
147 abs (XINT (height)); | 147 abs (XINT (height)); |
148 | 148 |
149 /* Misc frame stuff */ | 149 /* Misc frame stuff */ |
150 FRAME_MSWINDOWS_MENU_HASH_TABLE (f) = Qnil; | 150 FRAME_MSWINDOWS_MENU_HASH_TABLE (f) = Qnil; |
151 #ifdef HAVE_TOOLBARS | 151 #ifdef HAVE_TOOLBARS |
152 /* EQ not EQUAL or we will get QUIT crashes, see below. */ | |
152 FRAME_MSWINDOWS_TOOLBAR_HASH_TABLE (f) = | 153 FRAME_MSWINDOWS_TOOLBAR_HASH_TABLE (f) = |
153 make_lisp_hash_table (50, HASH_TABLE_NON_WEAK, HASH_TABLE_EQUAL); | 154 make_lisp_hash_table (50, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); |
154 #endif | 155 #endif |
155 /* hashtable of instantiated glyphs on the frame. Make them EQ because | 156 /* hashtable of instantiated glyphs on the frame. Make them EQ because |
156 we only use ints as keys. Otherwise we run into stickiness in | 157 we only use ints as keys. Otherwise we run into stickiness in |
157 redisplay because internal_equal() can QUIT. See | 158 redisplay because internal_equal() can QUIT. See |
158 enter_redisplay_critical_section(). */ | 159 enter_redisplay_critical_section(). */ |