r5167: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 20 Jun 2003 08:35:22 +0000 (08:35 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 20 Jun 2003 08:35:22 +0000 (08:35 +0000)
pubmed-src.lisp

index 2977609864b24623c3407f8a5af7731c9d20be4b..492a9f5a986c2f4627c8ffd8e2410f18a6d6e2cf 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Jun 2001
 ;;;;
-;;;; $Id: pubmed-src.lisp,v 1.2 2003/06/12 11:10:38 kevin Exp $
+;;;; $Id: pubmed-src.lisp,v 1.3 2003/06/20 08:35:22 kevin Exp $
 ;;;;
 ;;;; This file, part of cl-pubmed, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
                              &key (os *standard-output*) (format :text)
                              (complete nil) (print-link nil))
   "Display an article set to specified stream in specified format"
-  (dotimes (i (articles-count artset))
-    (print-article (nth i (articles artset)) :os os :format format 
-                  :complete complete :print-link print-link))
-  artset)
+  (dotimes (i (articles-count artset) artset)
+    (if (nth i (articles artset))
+       (print-article (nth i (articles artset)) :os os :format format 
+                      :complete complete :print-link print-link)
+      (princ "NULL Article" os))))
 
 (defmethod print-article ((art pm-article) &key (os *standard-output*)
                          (format :text) (complete nil) (print-link nil))