From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24998 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: nntp:news.freshmeat.net Date: 02 Sep 1999 15:41:39 -0400 Organization: U of Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <5br9khqex8.fsf@giga.cs.rochester.edu> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035162465 11736 80.91.224.250 (21 Oct 2002 01:07:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:07:45 +0000 (UTC) Cc: bugs@gnus.org Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id PAA24560 for ; Thu, 2 Sep 1999 15:44:44 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.3/8.9.1) with ESMTP id OAB18995; Thu, 2 Sep 1999 14:43:34 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 02 Sep 1999 14:42:49 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id OAA05457 for ; Thu, 2 Sep 1999 14:42:38 -0500 (CDT) Original-Received: from cayuga.cs.rochester.edu (cayuga.cs.rochester.edu [192.5.53.209]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id PAA24387; Thu, 2 Sep 1999 15:41:42 -0400 (EDT) Original-Received: from slate.cs.rochester.edu (slate.cs.rochester.edu [192.5.53.101]) by cayuga.cs.rochester.edu (8.9.3/Q) with SMTP id PAA08329; Thu, 2 Sep 1999 15:41:40 -0400 (EDT) Original-Received: from giga.cs.rochester.edu (giga.cs.rochester.edu [192.5.53.186]) by slate.cs.rochester.edu (8.6.9/P) with ESMTP id PAA27512; Thu, 2 Sep 1999 15:41:40 -0400 Original-Received: (from zsh@localhost) by giga.cs.rochester.edu (SMI-8.6/P++) id PAA28985; Thu, 2 Sep 1999 15:41:39 -0400 Original-To: ding@gnus.org X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: Ted Rathkopf's message of "02 Sep 1999 15:21:42 -0400" Original-Lines: 29 User-Agent: Gnus/5.070096 (Pterodactyl Gnus v0.96) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24998 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24998 --=-=-= >>>>> "Ted" == Ted Rathkopf writes: Ted> Alan Shutko writes: >> Chris Halverson writes: >> >> > Do the following: >> > >> > G m fm.announce RET nntp RET news.freshmeat.net >> > >> > You must "make" the group (G m). >> >> You should be able to browse it. Pgnus 0.84 does it fine, so I'd say >> it's a bug. Ted> That may be. I'm using 0.90. This is a bug since 0.93. Here is a patch to fix this bug hopefully. (cc'ed to bugs@gnus.org) 1999-09-02 Shenghuo ZHU * gnus-srvr.el (gnus-browse-foreign-server): Read the first line of active file. -- Shenghuo ZHU --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=96-zsh1.diff --- ../../pgnus-sent/lisp/gnus-srvr.el Thu Sep 2 15:23:34 1999 +++ gnus-srvr.el Thu Sep 2 15:34:53 1999 @@ -592,11 +592,12 @@ (goto-char (point-min)) (unless (string= gnus-ignored-newsgroups "") (delete-matching-lines gnus-ignored-newsgroups)) - (while (and (not (eobp)) (forward-line)) + (while (not (eobp)) (ignore-errors (push (cons (read cur) (max 0 (- (1+ (read cur)) (read cur)))) - groups))))) + groups)) + (forward-line)))) (setq groups (sort groups (lambda (l1 l2) (string< (car l1) (car l2))))) --=-=-=--