diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/w32fns.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 566073d7ab6..772f3887eab 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-01-19 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around | ||
| 4 | call to face-set-after-frame-default. | ||
| 5 | |||
| 1 | 2002-01-18 Richard M. Stallman <rms@gnu.org> | 6 | 2002-01-18 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1. | 8 | * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1. |
diff --git a/src/w32fns.c b/src/w32fns.c index a2b83c67bd3..45e35267e25 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -5629,6 +5629,10 @@ This function is an internal primitive--use `make-frame' instead. */) | |||
| 5629 | x_wm_set_size_hint (f, window_prompting, 0); | 5629 | x_wm_set_size_hint (f, window_prompting, 0); |
| 5630 | UNBLOCK_INPUT; | 5630 | UNBLOCK_INPUT; |
| 5631 | 5631 | ||
| 5632 | /* Avoid a bug that causes the new frame to never become visible if | ||
| 5633 | an echo area message is displayed during the following call1. */ | ||
| 5634 | specbind(Qredisplay_dont_pause, Qt); | ||
| 5635 | |||
| 5632 | /* Set up faces after all frame parameters are known. This call | 5636 | /* Set up faces after all frame parameters are known. This call |
| 5633 | also merges in face attributes specified for new frames. If we | 5637 | also merges in face attributes specified for new frames. If we |
| 5634 | don't do this, the `menu' face for instance won't have the right | 5638 | don't do this, the `menu' face for instance won't have the right |