1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

Suppress emacsclient message that daemon should have started if --quiet

* lib-src/emacsclient.c (start_daemon_and_retry_set_socket): Don't
output "daemon should have started" message if --quiet (bug#52214).
This commit is contained in:
Jim Porter 2021-12-01 05:56:55 +01:00 committed by Lars Ingebrigtsen
parent ec59a6cb0f
commit 3e756b12b6

View 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 */