From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/15824 Path: main.gmane.org!not-for-mail From: Mike McEwan Newsgroups: gmane.emacs.gnus.general Subject: Re: `gnus-group-read-group' doesn't use `select-article'? Date: 04 Aug 1998 21:33:07 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035154793 24227 80.91.224.250 (20 Oct 2002 22:59:53 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:59:53 +0000 (UTC) Return-Path: Original-Received: from gwyn.tux.org (gwyn.tux.org [207.96.122.8]) by altair.xemacs.org (8.9.1/8.9.1) with ESMTP id NAA02908 for ; Tue, 4 Aug 1998 13:41:13 -0700 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id QAA31469 for ; Tue, 4 Aug 1998 16:36:46 -0400 Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id PAT01848; Tue, 4 Aug 1998 15:07:53 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 04 Aug 1998 15:36:01 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id PAA12699 for ; Tue, 4 Aug 1998 15:35:42 -0500 (CDT) Original-Received: from post.mail.demon.net (post-20.mail.demon.net [194.217.242.27]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id QAA09168 for ; Tue, 4 Aug 1998 16:35:15 -0400 (EDT) Original-Received: from (lotusland.demon.co.uk) [158.152.62.156] by post.mail.demon.net with smtp (Exim 1.82 #2) id 0z3nnc-0005fQ-00; Tue, 4 Aug 1998 20:35:13 +0000 Original-Received: from mike by lotusland.demon.co.uk with local (Exim 2.01 #1) for ding@gnus.org id 0z3nnb-0000Ng-00; Tue, 4 Aug 1998 21:35:11 +0100 Original-To: ding@gnus.org In-Reply-To: Mike McEwan's message of "04 Aug 1998 20:53:42 +0100" X-Mailer: Gnus v5.6.27/XEmacs 20.4 - "Emerald" Original-Lines: 39 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:15824 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:15824 Talk about pernickety :-) --- ChangeLog.orig Tue Aug 4 20:27:02 1998 +++ ChangeLog Tue Aug 4 21:11:29 1998 @@ -6,6 +6,8 @@ `gnus-fetch-old-headers' is non-nil. (gnus-summary-read-group): pass SELECT-ARTICLE to `gnus-summary-read-group-1' and reset to nil when going to next group. + (gnus-summary-read-group): Change `select-article' to + `select-articles' for consistency. Tue Aug 4 05:25:01 1998 Lars Magne Ingebrigtsen --- gnus-sum.el.orig Tue Aug 4 21:08:20 1998 +++ gnus-sum.el Tue Aug 4 21:29:31 1998 @@ -2508,7 +2508,7 @@ (defun gnus-summary-read-group (group &optional show-all no-article kill-buffer no-display backward - select-article) + select-articles) "Start reading news in newsgroup GROUP. If SHOW-ALL is non-nil, already read articles are also listed. If NO-ARTICLE is non-nil, no article is selected initially. @@ -2520,9 +2520,9 @@ (or (gnus-summary-read-group-1 group show-all no-article kill-buffer no-display - select-article) + select-articles) (setq show-all nil - select-article nil))))) + select-articles nil))))) (eq gnus-auto-select-next 'quietly)) (set-buffer gnus-group-buffer) ;; The entry function called above goes to the next -- Mike.