diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2008-10-04 15:24:05 +0000 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2008-10-04 15:24:05 +0000 |
| commit | 6dfab00d57392a6453a4ed7286c9edca3ff6320e (patch) | |
| tree | 6c22f2ce4aa4904c575fce9a79aca69dfb9d0dd2 | |
| parent | 7ab9884799e68d5c415c409c3ad73f050a783a99 (diff) | |
| download | emacs-6dfab00d57392a6453a4ed7286c9edca3ff6320e.tar.gz | |
(redisplay_internal): If frame switched, redisplay the whole thing on MSDOS
frames as well as on a TTY.
| -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 32ad1fd1217..47ba85f7503 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -11394,7 +11394,7 @@ redisplay_internal (preserve_echo_area) if (face_change_count) ++windows_or_buffers_changed; - if (FRAME_TERMCAP_P (sf) + if ((FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)) && FRAME_TTY (sf)->previous_frame != sf) { /* Since frames on a single ASCII terminal share the same |
