X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch.c;h=5cc8e4c9bf2b2e5810a676656515b1f174d7e406;hp=cb5415abc846c59ade6b2534d2302d9a0d37c010;hb=31b54bc78735c628035a046e526ac4c596d830cf;hpb=533d0f5382797c702ac3976c1a7da27590ec1fb9 diff --git a/notmuch.c b/notmuch.c index cb5415ab..5cc8e4c9 100644 --- a/notmuch.c +++ b/notmuch.c @@ -238,28 +238,28 @@ command_t commands[] = { }; static void -usage (void) +usage (FILE *out) { command_t *command; unsigned int i; - fprintf (stderr, "Usage: notmuch [args...]\n"); - fprintf (stderr, "\n"); - fprintf (stderr, "Where and [args...] are as follows:\n"); - fprintf (stderr, "\n"); + fprintf (out, "Usage: notmuch [args...]\n"); + fprintf (out, "\n"); + fprintf (out, "Where and [args...] are as follows:\n"); + fprintf (out, "\n"); for (i = 0; i < ARRAY_SIZE (commands); i++) { command = &commands[i]; if (command->arguments) - fprintf (stderr, "\t%s\t%s\n\n%s\n\n", + fprintf (out, "\t%s\t%s\n\n%s\n\n", command->name, command->arguments, command->summary); else - fprintf (stderr, "\t%s\t%s\n\n", + fprintf (out, "\t%s\t%s\n\n", command->name, command->summary); } - fprintf (stderr, + fprintf (out, "Use \"notmuch help \" for more details on each command.\n" "And \"notmuch help search-terms\" for the common search-terms syntax.\n\n"); } @@ -271,8 +271,8 @@ notmuch_help_command (unused (void *ctx), int argc, char *argv[]) unsigned int i; if (argc == 0) { - fprintf (stderr, "The notmuch mail system.\n\n"); - usage (); + printf ("The notmuch mail system.\n\n"); + usage (stdout); return 0; } @@ -280,32 +280,32 @@ notmuch_help_command (unused (void *ctx), int argc, char *argv[]) command = &commands[i]; if (strcmp (argv[0], command->name) == 0) { - fprintf (stderr, "Help for \"notmuch %s\":\n\n", argv[0]); + printf ("Help for \"notmuch %s\":\n\n", argv[0]); if (command->arguments) - fprintf (stderr, "\t%s\t%s\n\n%s\n\n%s\n\n", - command->name, command->arguments, - command->summary, command->documentation); + printf ("\t%s\t%s\n\n%s\n\n%s\n\n", + command->name, command->arguments, + command->summary, command->documentation); else - fprintf (stderr, "\t%s\t%s\n\n%s\n\n", command->name, - command->summary, command->documentation); + printf ("\t%s\t%s\n\n%s\n\n", command->name, + command->summary, command->documentation); return 0; } } if (strcmp (argv[0], "search-terms") == 0) { - fprintf (stderr, "Help for <%s>\n\n", argv[0]); + printf ("Help for <%s>\n\n", argv[0]); for (i = 0; i < ARRAY_SIZE (commands); i++) { command = &commands[i]; if (command->arguments && strstr (command->arguments, "search-terms")) { - fprintf (stderr, "\t%s\t%s\n", - command->name, command->arguments); + printf ("\t%s\t%s\n", + command->name, command->arguments); } } - fprintf (stderr, "\n"); - fprintf (stderr, search_terms_help); + printf ("\n"); + printf (search_terms_help); return 0; } @@ -400,8 +400,6 @@ main (int argc, char *argv[]) return (command->function) (local, argc - 2, &argv[2]); } - /* Don't complain about "help" being an unknown command when we're - about to provide exactly what's wanted anyway. */ fprintf (stderr, "Error: Unknown command '%s' (see \"notmuch help\")\n", argv[1]);