From: Kevin M. Rosenberg Date: Sun, 13 Oct 2002 15:14:54 +0000 (+0000) Subject: r2988: patch for cmu X-Git-Tag: v2.5.5~143 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=ca8f976b933d7c4b3481b26efb14926f8c82e4a9;p=lml.git r2988: patch for cmu --- diff --git a/lml.lisp b/lml.lisp index 54ae37e..257955d 100644 --- a/lml.lisp +++ b/lml.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.lisp,v 1.2 2002/10/09 23:28:41 kevin Exp $ +;;;; $Id: lml.lisp,v 1.3 2002/10/13 15:14:54 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -253,6 +253,10 @@ (progn (setq got-comma nil) (vector-push-extend ch curr-string))))) + + #+cmu + (setf curr-string (coerce curr-string `(simple-array character (*)))) + (push `(lml-print ,curr-string) forms) `(progn ,@(nreverse forms)))))