From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9246 Path: main.gmane.org!not-for-mail From: Jan Vroonhof Newsgroups: gmane.emacs.gnus.general Subject: Re: Bogus group article counts Date: 18 Dec 1996 18:46:21 +0100 Sender: vroonhof@math.ethz.ch Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.94) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035149299 17290 80.91.224.250 (20 Oct 2002 21:28:19 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:28:19 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.4/8.8.4) with SMTP id KAA02564 for ; Wed, 18 Dec 1996 10:01:35 -0800 Original-Received: from frege.math.ethz.ch (root@frege-d-math-north-g-west.math.ethz.ch [129.132.145.3]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Wed, 18 Dec 1996 18:46:25 +0100 Original-Received: from fresnel.math.ethz.ch (vroonhof@fresnel [129.132.145.6]) by frege.math.ethz.ch (8.6.12/Main-STAT-mailer) with ESMTP id SAA06506 for ; Wed, 18 Dec 1996 18:45:43 +0100 Original-Received: (vroonhof@localhost) by fresnel.math.ethz.ch (8.6.9/D-MATH-client) id SAA10402; Wed, 18 Dec 1996 18:46:22 +0100 Original-To: ding@ifi.uio.no In-Reply-To: Sudish Joseph's message of 17 Dec 1996 23:41:09 -0500 Original-Lines: 34 X-Mailer: Red Gnus v0.76/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:9246 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9246 Sudish Joseph writes: > 0.76 seems to be showing extra articles in the Group buffer. For > instance, gnu.emacs.announce shows up with 5 new articles, the server > shows none. I had the same problem. For me it was that NoCem'ed articles were never marked as read, but removed each time from the summary buffer. Reverse the change to gnus-summary-catchup-articles (patch below) as a workaround. Jan --- gnus-sum.el.orig Mon Dec 16 18:32:25 1996 +++ gnus-sum.el Wed Dec 18 18:28:40 1996 @@ -7736,8 +7736,6 @@ If QUIETLY is non-nil, no questions will be asked. If TO-HERE is non-nil, it should be a point in the buffer. All articles before this point will be marked as read. -Note that this function will only catch up the unread article -in the current summary buffer limitation. The number of articles marked as read is returned." (interactive "P") (gnus-set-global-variables) @@ -7767,6 +7765,8 @@ (if to-here (< (point) to-here) t) (gnus-summary-mark-article-as-read gnus-catchup-mark) (gnus-summary-find-next (not all))))) + (unless to-here + (setq gnus-newsgroup-unreads nil)) (gnus-set-mode-line 'summary)) t)) (gnus-summary-position-point)))