From: Kevin M. Rosenberg Date: Mon, 14 Oct 2002 03:25:05 +0000 (+0000) Subject: r2999: *** empty log message *** X-Git-Tag: v2.5.5~140 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=3dd20782b30be51ea311ec67cbd75ada7e956a0e r2999: *** empty log message *** --- diff --git a/debian/changelog b/debian/changelog index 60fffb4..b51607d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +cl-lml (1.3-1) unstable; urgency=low + + * Add type declarations + * downloads.lisp: fix error + + -- Kevin M. Rosenberg 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) diff --git a/downloads.lisp b/downloads.lisp index 226095e..9fc9ac8 100644 --- a/downloads.lisp +++ b/downloads.lisp @@ -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) diff --git a/lml.lisp b/lml.lisp index 2e7dce9..3a39758 100644 --- 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 ;;;; @@ -211,6 +211,7 @@ (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