aboutsummaryrefslogtreecommitdiff
path: root/notmuch.c
diff options
context:
space:
mode:
authorTomi Ollila <tomi.ollila@iki.fi>2022-07-31 20:32:11 +0300
committerDavid Bremner <david@tethera.net>2022-07-31 21:03:59 -0300
commit54190d091cbceb345c489bd3f20fdca7e4b9a111 (patch)
treece3a07cd48229ffc1681235ed6b518522fda24e4 /notmuch.c
parentf4ebb6037529569875029f411fd062d79641ce14 (diff)
notmuch.c: add missing trailing newlines in two error messages
Removed duplicate error check (and the message) in 3rd case where the same error message (w/o trailing newline) was present. In case of test/T040-setup.sh, command substitution deletes trailing newlines, so related test there cannot be changed (and therefore could not notice this user experience flaw).
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/notmuch.c b/notmuch.c
index c75b0188..37286b8f 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -531,7 +531,7 @@ main (int argc, char *argv[])
}
if (status == NOTMUCH_STATUS_NO_CONFIG)
- fputs ("Try running 'notmuch setup' to create a configuration.", stderr);
+ fputs ("Try running 'notmuch setup' to create a configuration.\n", stderr);
return EXIT_FAILURE;
}
@@ -563,15 +563,10 @@ main (int argc, char *argv[])
NULL,
&notmuch,
&status_string);
-
- if (status == NOTMUCH_STATUS_NO_CONFIG && ! (command->mode & NOTMUCH_COMMAND_CONFIG_CREATE)) {
- fputs ("Try running 'notmuch setup' to create a configuration.", stderr);
- goto DONE;
- }
switch (status) {
case NOTMUCH_STATUS_NO_CONFIG:
if (! (command->mode & NOTMUCH_COMMAND_CONFIG_CREATE)) {
- fputs ("Try running 'notmuch setup' to create a configuration.", stderr);
+ fputs ("Try running 'notmuch setup' to create a configuration.\n", stderr);
goto DONE;
}
break;