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 5CE3F431FB6 for ; Mon, 17 Dec 2012 13:55:13 -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 DVvxWs1DiAOe for ; Mon, 17 Dec 2012 13:55:11 -0800 (PST) Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 3D087431FD4 for ; Mon, 17 Dec 2012 13:55:09 -0800 (PST) Received: by mail-wg0-f47.google.com with SMTP id dq11so2813147wgb.2 for ; Mon, 17 Dec 2012 13:55:08 -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=TJzPueoHtKZXDOFcfBvSmlRmqRvskJjzk8ybMxL+cndFFBcoDxK+SD5SHnRyyuyjZ+ mLEyOxrVsBU/w4+ho44qvdLN0Gx7N+3JJH0vkb/iknBHPWGhESFGDek7nYpibZj+A/74 /lj/eatgC6QOxOB/hENP7a6Ajkcv+xi8MR6e3dwl46HD4S7CZGZ/lOxKec9Ujs8P6Q2s UqsGeAT7Xiei7h7RbfbzbgifCpA+ZyoiIzzQhbL2a7RXFA95bC2mqB7EDxQhEyCMK3Tr rqrO9wIEOSd/ahpQUNkRGbe7wO4ekaaHz60JiXEoinDmNVP6YoulTFLWNt+WOmPMP7Mc WqMQ== Received: by 10.194.76.137 with SMTP id k9mr20012703wjw.29.1355781308039; Mon, 17 Dec 2012 13:55:08 -0800 (PST) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPS id dm3sm13043400wib.9.2012.12.17.13.55.06 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 17 Dec 2012 13:55:07 -0800 (PST) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v4 4/5] emacs: wash: fix fake-diff part to include msg parameter Date: Mon, 17 Dec 2012 21:54:46 +0000 Message-Id: <1355781287-6010-5-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1355781287-6010-1-git-send-email-markwalters1009@gmail.com> References: <1355781287-6010-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: Mon, 17 Dec 2012 21:55:13 -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