X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lml.lisp;h=3a39758321668c4d62ec2d13d205f95c6240b759;hb=e0e0162244fe21b5e2daf1ea9b1c4a58c732aa13;hp=257955dfb07f65b92c32ad177f3bb84065fcecc6;hpb=ca8f976b933d7c4b3481b26efb14926f8c82e4a9;p=lml.git diff --git a/lml.lisp b/lml.lisp index 257955d..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.3 2002/10/13 15:14:54 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,12 +211,16 @@ (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 (if (eql ch #\() ;; Starting top-level ,( (progn + #+cmu + (setf curr-string (coerce curr-string `(simple-array character (*)))) + (push `(lml-print ,curr-string) forms) (setq curr-string (new-string)) (setq got-comma nil)