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 C625F431FBF for ; Sun, 3 Jun 2012 04:46:31 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 lrNFp1SWJxs2 for ; Sun, 3 Jun 2012 04:46:31 -0700 (PDT) Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 05B04431FBD for ; Sun, 3 Jun 2012 04:46:30 -0700 (PDT) Received: by mail-we0-f181.google.com with SMTP id j55so2729830wer.26 for ; Sun, 03 Jun 2012 04:46:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=HzFUkIEDMGrnifX5esT4l0d8NTbQ9w8CsKI7YL5gDmk=; b=vXMEu4Qhh82ZagQtSLVm0Pu6nJKAbOBFS8TsTaCTx6ClHZUhgyXpJmpziXtOk7ZtpG H7iIL1Rj9g3dFNzdpybuHzqiLNfdKJF35acs9doanakro1ebpHuwbkKpXmKuYzWFtnWo p7unpYKSaLII8M6Nx8ZYQKyJxDpf7a6/5FxPPf209aRv62RwmTrW0n2ORlzz6lcPOq8d KwiQWD1BM/OOdiV7OI2VRPYR+Le3r61I66JzS7KavJifr63c7Q29PRAcwKNG+kaYaa1q C72wwLNjBZ1LuHlRq0wGDdRS9Vu5GO+vSoHlIo6mMkeVzBQ1ebcO1UpNVirSotVpXnmD Kt8g== Received: by 10.216.143.147 with SMTP id l19mr4209916wej.59.1338723990653; Sun, 03 Jun 2012 04:46:30 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id d10sm19477921wiy.3.2012.06.03.04.46.29 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 03 Jun 2012 04:46:30 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [Patch v7 6/6] cli: notmuch-show.c fix whitespace error Date: Sun, 3 Jun 2012 12:46:12 +0100 Message-Id: <1338723972-13063-7-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1338723972-13063-1-git-send-email-markwalters1009@gmail.com> References: <1338723972-13063-1-git-send-email-markwalters1009@gmail.com> 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: Sun, 03 Jun 2012 11:46:32 -0000 Fix an existing whitespace error since it is right next to the changes of this series. --- notmuch-show.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/notmuch-show.c b/notmuch-show.c index 61e19b0..b789853 100644 --- a/notmuch-show.c +++ b/notmuch-show.c @@ -1015,10 +1015,10 @@ notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[])) { "mbox", NOTMUCH_FORMAT_MBOX }, { "raw", NOTMUCH_FORMAT_RAW }, { 0, 0 } } }, - { NOTMUCH_OPT_KEYWORD, &exclude, "exclude", 'x', - (notmuch_keyword_t []){ { "true", EXCLUDE_TRUE }, - { "false", EXCLUDE_FALSE }, - { 0, 0 } } }, + { NOTMUCH_OPT_KEYWORD, &exclude, "exclude", 'x', + (notmuch_keyword_t []){ { "true", EXCLUDE_TRUE }, + { "false", EXCLUDE_FALSE }, + { 0, 0 } } }, { NOTMUCH_OPT_KEYWORD, &entire_thread, "entire-thread", 't', (notmuch_keyword_t []){ { "true", ENTIRE_THREAD_TRUE }, { "false", ENTIRE_THREAD_FALSE }, -- 1.7.9.1