]> git.eshelyaron.com Git - emacs.git/commitdiff
Suppress emacsclient message that daemon should have started if --quiet
authorJim Porter <jporterbugs@gmail.com>
Wed, 1 Dec 2021 04:56:55 +0000 (05:56 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 1 Dec 2021 04:56:55 +0000 (05:56 +0100)
* lib-src/emacsclient.c (start_daemon_and_retry_set_socket): Don't
output "daemon should have started" message if --quiet (bug#52214).

lib-src/emacsclient.c

index c55b29830df916c77a37d4a84ef546a1b2b3c0bd..6afea6f306379f83dc499e2c8a620992d62a931d 100644 (file)
@@ -1758,8 +1758,9 @@ start_daemon_and_retry_set_socket (void)
        }
 
       /* Try connecting, the daemon should have started by now.  */
-      message (true,
-              "Emacs daemon should have started, trying to connect again\n");
+      if (!quiet)
+        message (true,
+                 "Emacs daemon should have started, trying to connect again\n");
     }
   else if (dpid < 0)
     {
@@ -1850,7 +1851,7 @@ start_daemon_and_retry_set_socket (void)
   /* Try connecting, the daemon should have started by now.  */
   /* It's just a progress message, so don't pop a dialog if this is
      emacsclientw.  */
-  if (!w32_window_app ())
+  if (!quiet && !w32_window_app ())
     message (true,
             "Emacs daemon should have started, trying to connect again\n");
 #endif /* WINDOWSNT */