From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85806 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?Peter_M=C3=BCnster?= Newsgroups: gmane.emacs.gnus.general Subject: Re: Invalid face attribute Date: Mon, 23 Feb 2015 08:50:34 +0100 Message-ID: <87fv9xjcc5.fsf@free.fr> References: <87385xq2wz.fsf@free.fr> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1424677937 12692 80.91.229.3 (23 Feb 2015 07:52:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 23 Feb 2015 07:52:17 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M34045@lists.math.uh.edu Mon Feb 23 08:52:02 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 1YPno7-0001A5-Nb for ding-account@gmane.org; Mon, 23 Feb 2015 08:52:00 +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 1YPnnL-00020D-Lk; Mon, 23 Feb 2015 01:51:11 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YPnnH-0001zv-LQ for ding@lists.math.uh.edu; Mon, 23 Feb 2015 01:51:07 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1YPnnF-00032X-LF for ding@lists.math.uh.edu; Mon, 23 Feb 2015 01:51:06 -0600 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1YPnnA-0000aV-B9 for ding@gnus.org; Mon, 23 Feb 2015 08:51:00 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YPnn5-0000Yc-Tq for ding@gnus.org; Mon, 23 Feb 2015 08:50:55 +0100 Original-Received: from arennes-651-1-348-242.w2-14.abo.wanadoo.fr ([2.14.83.242]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Feb 2015 08:50:55 +0100 Original-Received: from pmlists by arennes-651-1-348-242.w2-14.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Feb 2015 08:50:55 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 33 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: arennes-651-1-348-242.w2-14.abo.wanadoo.fr User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) Cancel-Lock: sha1:QnbcW7hmD0Tg+k1wTIusUwNY06w= X-Spam-Score: -2.7 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85806 Archived-At: On Mon, Feb 23 2015, Katsumi Yamaoka wrote: > 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? > > --- 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))) Thanks, that fixes the problem! I still get "Invalid face attribute :italic t [18 times]" in the *Messages* buffer, but this is probably related to this line (setq gnus-summary-normal-ancient '(:foreground "black" :background "white" :italic t)) in my gnus.el file. I'll try to figure out, what this line means and fix it... Thanks, -- Peter