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 793D6431FBF for ; Thu, 13 Dec 2012 01:12:23 -0800 (PST) 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 jatob5-abnwo for ; Thu, 13 Dec 2012 01:12:23 -0800 (PST) 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 2BE79431FC0 for ; Thu, 13 Dec 2012 01:12:22 -0800 (PST) Received: by mail-we0-f181.google.com with SMTP id t11so723372wey.26 for ; Thu, 13 Dec 2012 01:12:21 -0800 (PST) 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=fqtw5ubvo3mZ4mvIWdatCv3rymr4Ku6h0E/NdA2Cp1s=; b=M/RBrk03n/ScHyLZko3eieoDjtITSPYEhwCI3yu2YSUZLVxsPp84VqM85McTABA2oP 0k9Jl4j2/Nz1X7WPmxGrJ3nBsvLVS/jFy3ur4sqGi+++PHD1jmxJphggfRr1VPNc96Ee zZSDKjfxjzQ9IBVMryD/3oF+GGeLzqjB8RDm+ktHatOfuw9+UVow/+TSR3foJnvJKNP5 oUiLybu2mrIALLw7of6Z4feOQ+zNCDf83j4AdkegIE0JUazx/3EvWaGehnbBucKKFRlG +KgtAHc7cFD6bZ48TWgzsr3zfAWazfdWrm4IThOmuRhIpoCN6ik6t0GiC6eK7Okf29f3 5nqQ== Received: by 10.180.81.41 with SMTP id w9mr17548826wix.18.1355389941004; Thu, 13 Dec 2012 01:12:21 -0800 (PST) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPS id cf6sm1552800wib.3.2012.12.13.01.12.19 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 13 Dec 2012 01:12:20 -0800 (PST) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v2 4/5] emacs: wash: fix fake-diff part to include msg parameter Date: Thu, 13 Dec 2012 09:12:03 +0000 Message-Id: <1355389924-3718-5-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1355389924-3718-1-git-send-email-markwalters1009@gmail.com> References: <1355389924-3718-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: Thu, 13 Dec 2012 09:12:23 -0000 The fake-diff part from notmuch wash did not pass the msg parameter to notmuch-show-insert-bodypart. Previously this did not matter, but is now needed to get the overlays right for invisibility. --- emacs/notmuch-wash.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/emacs/notmuch-wash.el b/emacs/notmuch-wash.el index 7d003a2..b2affba 100644 --- a/emacs/notmuch-wash.el +++ b/emacs/notmuch-wash.el @@ -378,7 +378,7 @@ for error." (plist-get (plist-get msg :headers) :Subject)))) (delete-region (point-min) (point-max)) - (notmuch-show-insert-bodypart nil part depth))))) + (notmuch-show-insert-bodypart msg part depth))))) ;; -- 1.7.9.1