r2999: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 14 Oct 2002 03:25:05 +0000 (03:25 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 14 Oct 2002 03:25:05 +0000 (03:25 +0000)
debian/changelog
downloads.lisp
lml.lisp

index 60fffb4e32b71aa4b680d019ee6475c9375bdd25..b51607d8398a667712c46d254ef3d77d86a15945 100644 (file)
@@ -1,3 +1,10 @@
+cl-lml (1.3-1) unstable; urgency=low
+
+  * Add type declarations 
+  * downloads.lisp: fix error 
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 13 Oct 2002 21:17:29 -0600
+
 cl-lml (1.2.1-1) unstable; urgency=low
 
   * Add another CMUCL work-around (thanks Fabricio Chalub)
index 226095eebfa7d3bf0ea21fe208f9f3534498f465..9fc9ac8292026ead8406946790c3ff9b6db14ada 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: downloads.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $
+;;;; $Id: downloads.lisp,v 1.2 2002/10/14 03:25:05 kevin Exp $
 ;;;;
 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -24,6 +24,7 @@
 (defvar *ftp-url*)
 (defvar *base-name*)
 (defvar *section-indent* 0)
+(declaim (type (fixnum *section-indent*)))
 (defvar *signed* nil)
 
 (defun list-files (files)
@@ -40,7 +41,7 @@
      :directory 
      (when (> (length bdir) (length fdir))
        (append '(:absolute) 
-              (subseq (length bdir) (length fdir) fdir))))))
+              (subseq fdir (length bdir) (length fdir)))))))
      
 (defun print-file (file)
   (let ((size 0)
index 2e7dce9e5c7fdad09df4db4f18dde2c802f6a971..3a39758321668c4d62ec2d13d205f95c6240b759 100644 (file)
--- a/lml.lisp
+++ b/lml.lisp
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: lml.lisp,v 1.4 2002/10/13 17:43:32 kevin Exp $
+;;;; $Id: lml.lisp,v 1.5 2002/10/14 03:25:05 kevin Exp $
 ;;;;
 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
            (curr-string (new-string))
            (paren-level 0)
            (got-comma nil))
+       (declare (type fixnum paren-level))
        (do ((ch (read-char stream t nil t) (read-char stream t nil t)))
            ((eql ch #\]))
          (if got-comma