Fix fencepost type error.
authorChris Hanson <org/chris-hanson/cph>
Sat, 20 Jun 1998 05:41:58 +0000 (05:41 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 20 Jun 1998 05:41:58 +0000 (05:41 +0000)
v7/src/edwin/snr.scm

index 2d42daef76170669e4ea9c76fc4b7f3886ab834f..cb90685fb702c263f6fe100d1ac2f3550c33dba1 100644 (file)
@@ -1,8 +1,8 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: snr.scm,v 1.40 1997/09/30 02:21:32 cph Exp $
+;;;    $Id: snr.scm,v 1.41 1998/06/20 05:41:58 cph Exp $
 ;;;
-;;;    Copyright (c) 1995-97 Massachusetts Institute of Technology
+;;;    Copyright (c) 1995-98 Massachusetts Institute of Technology
 ;;;
 ;;;    This material was developed by the Scheme project at the
 ;;;    Massachusetts Institute of Technology, Department of
@@ -3062,7 +3062,9 @@ C-c C-q  mail-fill-yanked-message (fill what was yanked)."
                     (set! convert-entry convert-groups-init-file-entry-type-4)
                     validate-groups-init-file-entry-type-4)
                    (else #f)))))))
-       (map (convert-entry connection) entries)))))
+       (if (null? entries)
+          entries
+          (map (convert-entry connection) entries))))))
 
 (define (write-groups-init-file connection groups buffer)
   (let ((server (nntp-connection:server connection)))