]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_display): Return earlier when running as a
authorDan Nicolaescu <dann@ics.uci.edu>
Sun, 28 Sep 2008 01:58:26 +0000 (01:58 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sun, 28 Sep 2008 01:58:26 +0000 (01:58 +0000)
daemon.

src/ChangeLog
src/dispnew.c

index aa372dd23df1ca5dc29bb01639cceb35890a0020..b95ac6cf34fb23e4d8a03146cc708905fd602ab9 100644 (file)
@@ -1,3 +1,8 @@
+2008-09-28  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * dispnew.c (init_display): Return earlier when running as a
+       daemon.
+
 2008-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
 
        * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from,
index 0f8f174eb7c4c47a2d188c44e796be33a3ffdb43..307515f7bfbca76c5e736d51a0a29f516c547588 100644 (file)
@@ -6824,6 +6824,10 @@ init_display ()
     signal (SIGWINCH, window_change_signal);
 #endif /* SIGWINCH */
 
+  /* If running as a daemon, no need to initialize any frames/terminal. */
+  if (is_daemon)
+    return;
+
   /* If the user wants to use a window system, we shouldn't bother
      initializing the terminal.  This is especially important when the
      terminal is so dumb that emacs gives up before and doesn't bother
@@ -6892,10 +6896,6 @@ init_display ()
     }
 #endif
 
-  /* If running as a daemon, no need to initialize any frames/terminal. */
-  if (is_daemon)
-    return;
-
   /* If no window system has been specified, try to use the terminal.  */
   if (! isatty (0))
     {