From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/64291 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Bug: Gnus uses face gnus-cite-1 for non-cited text Date: Thu, 08 Feb 2007 22:16:35 +0900 Message-ID: References: <87tzxzsenz.fsf@baldur.tsdh.de> <871wl2i4sf.fsf@baldur.tsdh.de> <87sldigl4v.fsf@baldur.tsdh.de> <87r6t0q5b6.fsf@baldur.tsdh.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1170940702 26256 80.91.229.12 (8 Feb 2007 13:18:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 8 Feb 2007 13:18:22 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M12815@lists.math.uh.edu Thu Feb 08 14:18:19 2007 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1HF9AI-0002j2-S5 for ding-account@gmane.org; Thu, 08 Feb 2007 14:18:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1HF99I-0000bK-Hn; Thu, 08 Feb 2007 07:17:16 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1HF99H-0000ay-0A for ding@lists.math.uh.edu; Thu, 08 Feb 2007 07:17:15 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1HF99A-0004fW-Mg for ding@lists.math.uh.edu; Thu, 08 Feb 2007 07:17:14 -0600 Original-Received: from washington.hostforweb.net ([66.225.201.13]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1HF999-0004JD-00 for ; Thu, 08 Feb 2007 14:17:07 +0100 Original-Received: from [218.118.2.103] (port=63517 helo=) by washington.hostforweb.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1HF98i-00065Z-C7 for ding@gnus.org; Thu, 08 Feb 2007 07:16:41 -0600 X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.93 (gnu/linux) Cancel-Lock: sha1:aUfxwipDerIIKt3lxcfgg4QPj2E= X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:64291 Archived-At: >>>>> In <87r6t0q5b6.fsf@baldur.tsdh.de> >>>>> Tassilo Horn wrote: > I tested with this posting: [...] >> (text-properties-at (point)) > ==> (fontified t) >> (mapcar 'overlay-properties (overlays-at (point))) > ==> ((face gnus-cite-1 evaporate t)) What put this face should be `gnus-article-highlight-citation', not `gnus-message-citation-mode'. `gnus-message-citation-mode' uses font-lock. font-lock uses text properties, not overlays. So, I think the culprit is not `gnus-message-citation-mode'. Evaluating the `(gnus-kill-all-overlays)' form in the message buffer will delete those faces (you can also add it to some message-*-hook for the workaround). I guess that those overlays are copied from the article buffer for some reason. Or don't you use `gnus-article-highlight-citation' purposely in the message buffer? I've used it like the following in the past: (let ((gnus-article-buffer (current-buffer))) (gnus-article-highlight-citation t)) Regards,