From: Kevin M. Rosenberg Date: Sun, 18 Apr 2004 23:24:49 +0000 (+0000) Subject: r9079: fix paren X-Git-Tag: v1.96~77 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=8e895e91cbb7c9f85e7097256c4097d048c2822d r9079: fix paren --- diff --git a/debian/changelog b/debian/changelog index dcc944f..ac0451a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-kmrcl (1.68-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg 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 6df1595..db94854 100644 --- 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"