r9079: fix paren
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 18 Apr 2004 23:24:49 +0000 (23:24 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 18 Apr 2004 23:24:49 +0000 (23:24 +0000)
debian/changelog
io.lisp

index dcc944f9e637d4701726f762ac83f69c1b8d1e37..ac0451ace48d8b619e27e301907a49022c9ce6ee 100644 (file)
@@ -1,3 +1,9 @@
+cl-kmrcl (1.68-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 18 Apr 2004 17:24:25 -0600
+
 cl-kmrcl (1.67-1) unstable; urgency=low
 
   * New upstream
diff --git a/io.lisp b/io.lisp
index 6df15953c7b533c32a320a612c4b6481137a0a25..db94854156e6dbd0bae9052a5e14746bb9857f7b 100644 (file)
--- a/io.lisp
+++ b/io.lisp
@@ -49,8 +49,8 @@
     (do ((line (read-line in nil eof) 
               (read-line in nil eof)))
        ((eq line eof))
-      (push line lines)))
-  (nreverse lines))
+      (push line lines))
+    (nreverse lines)))
     
 (defun read-file-to-strings (file)
   "Opens a reads a file. Returns the contents as a list of strings"