(main): If using the current frame, send tty information to Emacs in

case daemon mode needs to occupy this tty.
This commit is contained in:
Chong Yidong 2008-10-30 15:54:38 +00:00
parent 8a8a7cd396
commit 8536c0f5c5

View file

@ -1437,7 +1437,10 @@ main (argc, argv)
send_to_emacs (emacs_socket, " ");
}
if (tty)
/* If using the current frame, send tty information to Emacs anyway.
In daemon mode, Emacs may need to occupy this tty if no other
frame is available. */
if (tty || current_frame)
{
char *type = egetenv ("TERM");
char *tty_name = NULL;