group, indicating that there are no articles on the server. News
reader was expecting the last two numbers to be article numbers, but
zero is not a valid article number.
;;; -*-Scheme-*-
;;;
-;;; $Id: snr.scm,v 1.33 1997/05/27 07:30:31 cph Exp $
+;;; $Id: snr.scm,v 1.34 1997/05/27 19:35:17 cph Exp $
;;;
;;; Copyright (c) 1995-97 Massachusetts Institute of Technology
;;;
(define (news-group:number-of-articles group)
(let ((estimate (news-group:estimated-n-articles group)))
(and estimate
- (if (news-group:reader-hook group)
+ (if (and (news-group:reader-hook group)
+ (news-group:server-has-articles? group))
(let ((n-seen
(count-ranges
(news-group:guarantee-ranges-deleted group))))