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 B6EB5431FC2 for ; Sat, 15 Dec 2012 00:15:54 -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 8hfEQ5ZFC5wC for ; Sat, 15 Dec 2012 00:15:54 -0800 (PST) Received: from mail-wi0-f181.google.com (mail-wi0-f181.google.com [209.85.212.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 89267431FC7 for ; Sat, 15 Dec 2012 00:15:52 -0800 (PST) Received: by mail-wi0-f181.google.com with SMTP id hm9so961793wib.2 for ; Sat, 15 Dec 2012 00:15:51 -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=bIT6mYTvgSO7ddcUCO37nfH69gX9yeVwiuoDHkvYdeLtJY5xz4/h9Iu4weTuIEe40o nW8EUvNHCS1nrjrc0moujxwLt7+Xv+a9+dJyUH9Jw+K5MuCJGaZPI8x1V5bKdGI8zWn1 VIK1loVoMY3PwkKByPt3UYxqLKxQzIP96Gv43T8P1obG8Uh39w2+/Q1LFHjEtqgMFVg0 +5Xs/5LOU6qZyJtpbZSiBhPeJYDYnrH+a+AN9rK4tnsxcapOrXOpHsl6UOKaErkn8pqZ yZzHEG+H8xUYNssJ7plcYezTog1KPdvV3aGZrgheXxozrxkfC71bpc9snNG4CouzRl1L t5gw== Received: by 10.194.10.74 with SMTP id g10mr7585038wjb.21.1355559351429; Sat, 15 Dec 2012 00:15:51 -0800 (PST) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPS id dw4sm1157495wib.1.2012.12.15.00.15.50 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 15 Dec 2012 00:15:50 -0800 (PST) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v3 4/5] emacs: wash: fix fake-diff part to include msg parameter Date: Sat, 15 Dec 2012 08:15:36 +0000 Message-Id: <1355559338-14313-5-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1355559338-14313-1-git-send-email-markwalters1009@gmail.com> References: <1355559338-14313-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: Sat, 15 Dec 2012 08:15:55 -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