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 DF0B7431FD0 for ; Wed, 16 Mar 2011 00:09:58 -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 A98e1WOXVp5u for ; Wed, 16 Mar 2011 00:09:58 -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 0861D431FB5 for ; Wed, 16 Mar 2011 00:09:57 -0700 (PDT) Received: by wwb28 with SMTP id 28so1457250wwb.2 for ; Wed, 16 Mar 2011 00:09:55 -0700 (PDT) Received: by 10.227.147.196 with SMTP id m4mr396659wbv.179.1300259395677; Wed, 16 Mar 2011 00:09:55 -0700 (PDT) Received: from localhost (181.66-240-81.adsl-dyn.isp.belgacom.be [81.240.66.181]) by mx.google.com with ESMTPS id u9sm779293wbg.0.2011.03.16.00.09.53 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 16 Mar 2011 00:09:54 -0700 (PDT) From: Pieter Praet To: notmuch@notmuchmail.org Subject: [PATCH] emacs: "message-cited-text-face" is obsolete since Emacs 22.1. Use "message-cited-text" instead. User-Agent: Notmuch/0.5-49-g4aeb291 (http://notmuchmail.org) Emacs/23.1.50.1 (x86_64-pc-linux-gnu) Date: Wed, 16 Mar 2011 08:09:52 +0100 Message-ID: <874o73h77j.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: Wed, 16 Mar 2011 07:09:59 -0000 --- 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" ---