From a04792f0e7d7c539becfa095778ec16815a3fc29 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 13 Oct 2002 17:43:32 +0000 Subject: [PATCH] r2991: *** empty log message *** --- debian/changelog | 6 ++++++ lml.lisp | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 9a9cde9..60fffb4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-lml (1.2.1-1) unstable; urgency=low + + * Add another CMUCL work-around (thanks Fabricio Chalub) + + -- Kevin M. Rosenberg Sun, 13 Oct 2002 11:42:33 -0600 + cl-lml (1.2-1) unstable; urgency=low * New upstream: Work around bug for CMUCL in when compiling .lml files diff --git a/lml.lisp b/lml.lisp index 257955d..2e7dce9 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.4 2002/10/13 17:43:32 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -217,6 +217,9 @@ (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) -- 2.34.1