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 CB1B8431FD6 for ; Sun, 27 May 2012 01:23:01 -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 RJ8rTpajlKc1 for ; Sun, 27 May 2012 01:23:01 -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 7D5C8431E84 for ; Sun, 27 May 2012 01:22:48 -0700 (PDT) Received: by mail-we0-f181.google.com with SMTP id j55so1718268wer.26 for ; Sun, 27 May 2012 01:22:48 -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=gOLPSz7s6jsDzDkKrpYdTa5aozcfo/siCJAU1KwAXkA=; b=J0F7/tyfJASiO+tTH2drAdR2d7InJq3/jyWC6Nf3OcQk86Td7+3qiHqdGXdbWtUOiW N1VuNIp5QjiNLsLAUP/4wtDJCCv5dgL3U2cXaVDYm41mtMZfj01ZAOrt1m26O29NPiZi KVK2SMRQfUBftPqZ0SWYOAPjXnR/ueqFNd+3453xoaFP77VRWfDF4K1LOdHoaGkR1UT3 XmGiec/iRp33nTXMepoRifK8RmUeASx1TOh+/ZqpdULtiBNClImsKJaPrS59boC2O0q4 LHWLIWvot72+NV+Ph+K76wz8F1UDzD+0H/BR3Rse0k8gb2EMshpQg2pRE3D140//Omcn G2IA== Received: by 10.180.8.69 with SMTP id p5mr7657090wia.17.1338106968196; Sun, 27 May 2012 01:22:48 -0700 (PDT) Received: from localhost (94-192-233-223.zone6.bethere.co.uk. [94.192.233.223]) by mx.google.com with ESMTPS id d10sm18177367wiy.3.2012.05.27.01.22.46 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 27 May 2012 01:22:47 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v6 6/6] cli: notmuch-show.c fix whitespace error Date: Sun, 27 May 2012 09:22:26 +0100 Message-Id: <1338106946-7611-7-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1338106946-7611-1-git-send-email-markwalters1009@gmail.com> References: <1338106946-7611-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, 27 May 2012 08:23:02 -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 4e2965e..e19ffda 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