From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/81523 Path: news.gmane.org!not-for-mail From: Christopher Schmidt Newsgroups: gmane.emacs.gnus.general Subject: gnus-message-citation-mode resets font-lock Date: Thu, 08 Mar 2012 06:57:19 +0100 Message-ID: <20120308055725.6481E1FDDF@saturn.ch.ristopher.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1331186331 10233 80.91.229.3 (8 Mar 2012 05:58:51 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 8 Mar 2012 05:58:51 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M29803@lists.math.uh.edu Thu Mar 08 06:58:50 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1S5WND-0003Vz-4V for ding-account@gmane.org; Thu, 08 Mar 2012 06:58:47 +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 1S5WM0-0004ZY-7v; Wed, 07 Mar 2012 23:57:32 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1S5WLz-0004ZQ-7h for ding@lists.math.uh.edu; Wed, 07 Mar 2012 23:57:31 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1S5WLy-000834-6C for ding@lists.math.uh.edu; Wed, 07 Mar 2012 23:57:30 -0600 Original-Received: from ristopher.com ([146.185.21.93] helo=saturn.ch.ristopher.com) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1S5WLw-0004an-6I for ding@gnus.org; Thu, 08 Mar 2012 06:57:28 +0100 Original-Received: by saturn.ch.ristopher.com (Postfix, from userid 0) id 6481E1FDDF; Thu, 8 Mar 2012 05:57:25 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ch.ristopher.com; s=mail; t=1331186245; bh=KZAYlOlRNC9cxY96uvAO4QPWoSJO1fHy4bjLD4u+AO4=; h=From:To:Subject:Date:MIME-Version:Content-Type:Message-Id; b=Gvz/ZY/LUWRruRmIMhrPVVzOols54KBsaU0DgyN8exkkwZQQTbx5Dz9LIoPcUlzwj 7a95vkcbrX7alNxeORGDQOwvMu8J0pqpt4jcQwfZt5gVdL+90Zit/tXjTADGfbL6Rz kULYtnZZaeuPwOBGav8e1hAfje1j69yfugoj9AnE= Mail-Followup-To: ding@gnus.org X-Spam-Score: -2.0 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:81523 Archived-At: Hey gurus, I have a problem with Ma Gnus v0.3 (I am using the tagged one from git repo) on GNU Emacs 24.0.94.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.9) of 2012-03-08. Recipe: emacs -q eval: (setq gnus-select-method '(nnnil "") mail-user-agent 'gnus-user-agent) (add-hook 'message-mode-hook (lambda () (whitespace-mode 1))) C-x m # whitespace mode works - note the red marker on the space after `Subject' M-x gnus RET C-x m # the marker is gone :( Long story short, this bug is caused by gnus-message-citation-mode doing some crazy font-lock stuff. In particular that (setq font-lock-set-defaults nil) (font-lock-set-defaults) in gnus-cite.el:1261 causes the trouble. Christopher