From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/66443 Path: news.gmane.org!not-for-mail From: Sven Joachim Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-summary-end-of-article displays beginning of article Date: Thu, 06 Mar 2008 09:25:30 +0100 Message-ID: <87zltc45tx.fsf@gmx.de> References: <87d4qblk24.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1204791986 9753 80.91.229.12 (6 Mar 2008 08:26:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Mar 2008 08:26:26 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M14934@lists.math.uh.edu Thu Mar 06 09:26:51 2008 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 1JXBR7-0005g6-J4 for ding-account@gmane.org; Thu, 06 Mar 2008 09:26:45 +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 1JXBPt-0008P5-Ig; Thu, 06 Mar 2008 02:25:29 -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 1JXBPs-0008Ou-DB for ding@lists.math.uh.edu; Thu, 06 Mar 2008 02:25:28 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1JXBPm-0006hE-3e for ding@lists.math.uh.edu; Thu, 06 Mar 2008 02:25:28 -0600 Original-Received: from mail.gmx.net ([213.165.64.20]) by quimby.gnus.org with smtp (Exim 3.35 #1 (Debian)) id 1JXBPs-00077A-00 for ; Thu, 06 Mar 2008 09:25:28 +0100 Original-Received: (qmail invoked by alias); 06 Mar 2008 08:24:50 -0000 Original-Received: from p54863C95.dip.t-dialin.net (EHLO debian) [84.134.60.149] by mail.gmx.net (mp046) with SMTP; 06 Mar 2008 09:24:50 +0100 X-Authenticated: #28250155 X-Provags-ID: V01U2FsdGVkX1/1i8Fr2cv1F+VepH8ERhxRwbI0E/55s7Y8Gu8X7h LRfZzsOo6CDce8 Mail-Followup-To: ding@gnus.org In-Reply-To: (Reiner Steib's message of "Tue, 04 Mar 2008 23:31:43 +0100") User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1.91 (gnu/linux) X-Y-GMX-Trusted: 0 X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:66443 Archived-At: On 2008-03-04 23:31 +0100, Reiner Steib wrote: > On Mon, Mar 03 2008, Sven Joachim wrote: > >> With current No Gnus CVS I'm noticing the unwanted behavior that >> gnus-summary-end-of-article goes to the beginning of the article, rather >> than to the end. Anyone else seeing this? >> >> I've tried to single-step that function, but failed to find anything >> obviously wrong. And it had not been changed for ages. > > `gnus-summary-end-of-article' has been modified in 5.10.3: That's what I meant with "ages". And it still works fine in current Gnus 5.11 from EMACS_22_BASE. > After reverting the following hunk, it works as expected for me. > > ,---- > | --- gnus-sum.el 19 Oct 2003 01:09:52 -0000 6.369 > | +++ gnus-sum.el 21 Oct 2003 14:28:32 -0000 6.370 > | [...] > | @@ -8518,7 +8518,9 @@ > | (widen) > | (goto-char (point-max)) > | (recenter -3) > | - (when gnus-page-broken > | + (when gnus-break-pages > | + (when (re-search-backward page-delimiter nil t) > | + (narrow-to-region (match-end 0) (point-max))) > | (gnus-narrow-to-page)))) > | > | (defun gnus-summary-print-truncate-and-quote (string &optional len) > `---- Okay, for the moment I have set gnus-break-pages to nil, which works around the problem. Still puzzled, Sven