diff options
| author | Gerd Moellmann | 2001-01-25 12:40:22 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-01-25 12:40:22 +0000 |
| commit | c3e6cafd617e5a4e5f2de7b7f7e52acb579c0c0a (patch) | |
| tree | 6c776e0b9ca7b7e4417ba2e74c70378644077eab | |
| parent | 4685e6b754405f92b263bbfd435a14f5bf426a28 (diff) | |
| download | emacs-c3e6cafd617e5a4e5f2de7b7f7e52acb579c0c0a.tar.gz emacs-c3e6cafd617e5a4e5f2de7b7f7e52acb579c0c0a.zip | |
(echo_area_display): Don't call redisplay_internal
when Emacs is shutting down. We can't run hooks etc. that
would be necessary to do a redisplay.
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index c99650f14fc..b205e8a432a 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -6667,7 +6667,7 @@ echo_area_display (update_frame_p) | |||
| 6667 | if (!display_completed) | 6667 | if (!display_completed) |
| 6668 | n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0); | 6668 | n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0); |
| 6669 | 6669 | ||
| 6670 | if (window_height_changed_p) | 6670 | if (window_height_changed_p && !NILP (Vrun_hooks)) |
| 6671 | { | 6671 | { |
| 6672 | /* Must update other windows. Likewise as in other | 6672 | /* Must update other windows. Likewise as in other |
| 6673 | cases, don't let this update be interrupted by | 6673 | cases, don't let this update be interrupted by |