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 34032429E20 for ; Sun, 20 Mar 2011 03:13:32 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[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 6idbsuyM9zFk for ; Sun, 20 Mar 2011 03:13:30 -0700 (PDT) Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 5F919431FB5 for ; Sun, 20 Mar 2011 03:13:30 -0700 (PDT) Received: by wwb28 with SMTP id 28so5485251wwb.2 for ; Sun, 20 Mar 2011 03:13:29 -0700 (PDT) Received: by 10.227.16.98 with SMTP id n34mr3007655wba.31.1300616008947; Sun, 20 Mar 2011 03:13:28 -0700 (PDT) Received: from localhost (89.27-240-81.adsl-dyn.isp.belgacom.be [81.240.27.89]) by mx.google.com with ESMTPS id x1sm2227269wbh.19.2011.03.20.03.13.27 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 20 Mar 2011 03:13:28 -0700 (PDT) From: Pieter Praet To: notmuch@notmuchmail.org Subject: [PATCH 1/1] emacs: Use "message-cited-text" instead of "message-cited-text-face" In-Reply-To: <87aagqqeyu.fsf@A7GMS.i-did-not-set--mail-host-address--so-tickle-me> Date: Sun, 20 Mar 2011 11:06:22 +0100 References: <874o73h77j.fsf@A7GMS.i-did-not-set--mail-host-address--so-tickle-me> <87ipvjnwg7.fsf@zancas.localnet> <87aagqqeyu.fsf@A7GMS.i-did-not-set--mail-host-address--so-tickle-me> User-Agent: Notmuch/0.5-49-g4aeb291 (http://notmuchmail.org) Emacs/23.1.50.1 (x86_64-pc-linux-gnu) From eda89605461e0c4ebfc0614cca534c2104bc6f97 Mon Sep 17 00:00:00 2001 Message-ID: <87pqpmje13.fsf@A7GMS.i-did-not-set--mail-host-address--so-tickle-me> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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, 20 Mar 2011 10:13:32 -0000 (describe-face 'message-cited-text-face) > message-cited-text-face is an alias for the face `message-cited-text'. > This face is obsolete since 22.1; use `message-cited-text' instead. Signed-off-by: Pieter Praet --- emacs/notmuch-wash.el | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs/notmuch-wash.el b/emacs/notmuch-wash.el index c4a7a41..0e64eb2 100644 --- a/emacs/notmuch-wash.el +++ b/emacs/notmuch-wash.el @@ -125,7 +125,7 @@ is what to put on the button." (let* ((cite-start (match-beginning 0)) (cite-end (match-end 0)) (cite-lines (count-lines cite-start cite-end))) - (overlay-put (make-overlay cite-start cite-end) 'face 'message-cited-text-face) + (overlay-put (make-overlay cite-start cite-end) 'face 'message-cited-text) (when (> cite-lines (+ notmuch-wash-citation-lines-prefix notmuch-wash-citation-lines-suffix 1)) @@ -151,7 +151,7 @@ is what to put on the button." (sig-end-marker (make-marker))) (set-marker sig-start-marker sig-start) (set-marker sig-end-marker (point-max)) - (overlay-put (make-overlay sig-start-marker sig-end-marker) 'face 'message-cited-text-face) + (overlay-put (make-overlay sig-start-marker sig-end-marker) 'face 'message-cited-text) (notmuch-wash-region-to-button sig-start-marker sig-end-marker "signature" "\n" -- 1.7.1