Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id A32B9429E25 for ; Mon, 31 Oct 2011 12:01:29 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -2.3 X-Spam-Level: X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TWDl03jCmXW6 for ; Mon, 31 Oct 2011 12:01:29 -0700 (PDT) Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu [131.215.239.19]) by olra.theworths.org (Postfix) with ESMTP id 2ED2B431FD0 for ; Mon, 31 Oct 2011 12:01:29 -0700 (PDT) Received: from fire-doxen.imss.caltech.edu (localhost [127.0.0.1]) by fire-doxen-postvirus (Postfix) with ESMTP id 0598032816C for ; Mon, 31 Oct 2011 12:01:28 -0700 (PDT) X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new Received: from finestructure.net (gwave-114.ligo.caltech.edu [131.215.114.114]) (Authenticated sender: jrollins) by fire-doxen-submit (Postfix) with ESMTP id 2C80D328173 for ; Mon, 31 Oct 2011 12:01:26 -0700 (PDT) Received: by finestructure.net (Postfix, from userid 1000) id 04C204BF; Mon, 31 Oct 2011 12:01:26 -0700 (PDT) From: Jameson Graef Rollins To: Notmuch Mail Subject: [PATCH] Fix formatting for restore and dump help documentation. Date: Mon, 31 Oct 2011 12:01:25 -0700 Message-Id: <1320087685-19782-1-git-send-email-jrollins@finestructure.net> X-Mailer: git-send-email 1.7.7 In-Reply-To: <1319921715-23010-1-git-send-email-david@tethera.net> References: <1319921715-23010-1-git-send-email-david@tethera.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Oct 2011 19:01:29 -0000 This normalizes the code and output formatting here to look like the rest of the help output. --- notmuch.c | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/notmuch.c b/notmuch.c index 3a51fee..14e5ad5 100644 --- a/notmuch.c +++ b/notmuch.c @@ -390,8 +390,8 @@ static command_t commands[] = { "\tdatabase will be generated. A \"--\" argument instructs\n" "\tnotmuch that the remaining arguments are search terms.\n" "\n" - "\tSee \"notmuch help search-terms\" for the search-term syntax.\n" - }, + "\tSee \"notmuch help search-terms\" for details of the search\n" + "\tterms syntax." }, { "restore", notmuch_restore_command, "[--accumulate] []", "Restore the tags from the given dump file (see 'dump').", @@ -401,17 +401,17 @@ static command_t commands[] = { "\tSo if you've previously been using sup for mail, then the\n" "\t\"notmuch restore\" command provides you a way to import\n" "\tall of your tags (or labels as sup calls them).\n" - "\tSupported options for restore include\n" "\n" - "\t --accumulate\n" - "\t The union of the existing and new tags is applied, instead of\n" - "\t replacing each message's tags as they are read in from the\n" - "\t dump file.\n" + "\tSupported options for restore include:\n" + "\n" + "\t--accumulate\n" + "\t\tThe union of the existing and new tags is applied, instead of\n" + "\t\treplacing each message's tags as they are read in from the\n" + "\t\tdump file.\n" "\n" - "\t --match=\n" - "\t Add or delete only tags matching . Other tags in the\n" - "\t input (or the database) are ignored.\n" - }, + "\t--match=\n" + "\t\tAdd or delete only tags matching . Other tags in the\n" + "\t\tinput (or the database) are ignored." }, { "config", notmuch_config_command, "[get|set]
. [value ...]", "Get or set settings in the notmuch configuration file.", -- 1.7.7