From 977ca6b527efd6637ff0cc472e1d04901087da93 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 28 Oct 1996 00:12:29 +0000 Subject: [PATCH] Don't purge header database when reading headers in; this unnecessarily slows down the header-reading process. --- v7/src/edwin/snr.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/edwin/snr.scm b/v7/src/edwin/snr.scm index c18eaaf3e..795679f81 100644 --- a/v7/src/edwin/snr.scm +++ b/v7/src/edwin/snr.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: snr.scm,v 1.16 1996/10/23 22:58:42 cph Exp $ +;;; $Id: snr.scm,v 1.17 1996/10/28 00:12:29 cph Exp $ ;;; ;;; Copyright (c) 1995-96 Massachusetts Institute of Technology ;;; @@ -3644,9 +3644,9 @@ With prefix arg, replaces the file with the list information." (news-group:update-ranges! group) (news-group:pre-read-headers group (news-group:unread-header-numbers group)) (if (not (ref-variable news-group-show-seen-headers buffer)) - (begin - (news-group:get-headers group #f buffer) - (news-group:purge-and-compact-headers! group buffer)))) + ;; Read in the headers -- this finds the headers to be ignored + ;; and marks them as such. + (news-group:get-headers group #f buffer))) (define (article-number-seen! group number) (set-news-group:ranges-seen! -- 2.25.1