From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85805 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Invalid face attribute Date: Mon, 23 Feb 2015 11:42:00 +0900 Organization: Emacsen advocacy group Message-ID: References: <87385xq2wz.fsf@free.fr> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: ger.gmane.org 1424659393 9959 80.91.229.3 (23 Feb 2015 02:43:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 23 Feb 2015 02:43:13 +0000 (UTC) Cc: ding@gnus.org To: Peter =?iso-8859-1?Q?M=FCnster?= Original-X-From: ding-owner+M34044@lists.math.uh.edu Mon Feb 23 03:42:59 2015 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 1YPiz3-0008Et-5Q for ding-account@gmane.org; Mon, 23 Feb 2015 03:42:57 +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 1YPiyT-0000kX-7L; Sun, 22 Feb 2015 20:42:21 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YPiyR-0000kI-Jr for ding@lists.math.uh.edu; Sun, 22 Feb 2015 20:42:19 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1YPiyO-0006rF-DH for ding@lists.math.uh.edu; Sun, 22 Feb 2015 20:42:17 -0600 Original-Received: from memphis-mail.hostforweb.net ([216.246.47.48] helo=memphis.hostforweb.net) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1YPiyM-00027I-MU for ding@gnus.org; Mon, 23 Feb 2015 03:42:14 +0100 Original-Received: from localhost ([127.0.0.1]:59217) by memphis.hostforweb.net with smtp (Exim 4.84) (envelope-from ) id 1YPiyD-000X0c-C6; Sun, 22 Feb 2015 20:42:05 -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.130012 (=?iso-2022-jp?B?GyRCPz8bKEI=?= Gnus v0.12) Emacs/25.0.50 (i686-pc-cygwin) Cancel-Lock: sha1:XiLXQW4M3PSeQeAqA4ZhoLIPmAQ= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - memphis.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-Get-Message-Sender-Via: memphis.hostforweb.net: acl_c_authenticated_local_user: yamaokac X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85805 Archived-At: --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable On Sun, 22 Feb 2015 18:19:56 +0100, Peter M=FCnster wrote: > When I open this message: > Newsgroups: gmane.comp.freedesktop.xorg > Subject: DPMS switches to suspend too early > I get these errors: > Invalid face attribute :italic t [68 times] > gnus-mime-display-part: End of bufferInvalid face attribute :italic t > Invalid face attribute :italic t [11 times] > and all headers are displayed. The "End of buffer" error is due to my fault (2014-05-14). I've fixed it in the Gnus git master and the Emacs git master. Thanks. But I couldn't reproduce the "Invalid face attribute" error for the article in question. Could you try this change? --=-=-= Content-Type: text/x-patch Content-Disposition: inline --- gnus-art.el~ 2015-02-23 02:36:46.810434200 +0000 +++ gnus-art.el 2015-02-23 02:38:35.605025300 +0000 @@ -6101,7 +6101,7 @@ (gnus-article-insert-newline) (if (prog1 (= (skip-chars-backward "\n") -1) - (forward-char 1)) + (unless (eobp) (forward-char 1))) (gnus-article-insert-newline) (put-text-property (point) (point-max) 'gnus-undeletable t)) (goto-char (point-max))) --=-=-=--