diff options
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 23685ee8ae6..a52a113ccda 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -3457,7 +3457,8 @@ x_focus_changed (int type, int state, struct x_display_info *dpyinfo, struct fra | |||
| 3457 | 3457 | ||
| 3458 | /* Don't stop displaying the initial startup message | 3458 | /* Don't stop displaying the initial startup message |
| 3459 | for a switch-frame event we don't need. */ | 3459 | for a switch-frame event we don't need. */ |
| 3460 | if (NILP (Vterminal_frame) | 3460 | /* When run as a deamon, Vterminal_frame is always NIL. */ |
| 3461 | if ((NILP (Vterminal_frame) || EQ (Fdaemonp(), Qt)) | ||
| 3461 | && CONSP (Vframe_list) | 3462 | && CONSP (Vframe_list) |
| 3462 | && !NILP (XCDR (Vframe_list))) | 3463 | && !NILP (XCDR (Vframe_list))) |
| 3463 | { | 3464 | { |