(main): If using the current frame, send tty information to Emacs in
authorChong Yidong <cyd@stupidchicken.com>
Thu, 30 Oct 2008 15:54:38 +0000 (15:54 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 30 Oct 2008 15:54:38 +0000 (15:54 +0000)
case daemon mode needs to occupy this tty.

lib-src/emacsclient.c

index 870100e..0bbc385 100644 (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;