X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=read-macro.lisp;h=f8740bf441a7aae3d7779a9e93d6189bd5042ca8;hb=4ac92d423163d88b24caedd2ad0af0c84324d775;hp=4ce43d28688dbc867ae3980e015044ba48c829fb;hpb=4702caa93dd3157528b62c3befc5f86fdfb7ec5c;p=lml.git diff --git a/read-macro.lisp b/read-macro.lisp index 4ce43d2..f8740bf 100644 --- a/read-macro.lisp +++ b/read-macro.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: read-macro.lisp,v 1.1 2003/04/27 17:53:16 kevin Exp $ +;;;; $Id: read-macro.lisp,v 1.3 2003/06/17 17:50:45 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,8 +16,7 @@ ;;;; (http://www.gnu.org/licenses/gpl.html) ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 3) (compilation-speed 0))) -(in-package :lml) +(in-package #:lml) (set-macro-character #\[ @@ -41,7 +40,7 @@ (setq curr-string (new-string)) (setq got-comma nil) (vector-push #\( curr-string) - (do ((ch (read-char stream t nil t) (Read-char stream t nil t))) + (do ((ch (read-char stream t nil t) (read-char stream t nil t))) ((and (eql ch #\)) (zerop paren-level))) (when (eql ch #\]) (format *trace-output* "Syntax error reading #\]")