X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=files.lisp;h=cf1633f736eb1d63a2811f00989bb92d3d4bf285;hb=61fd445f75948f980c31c6ca6dcc36f0263aafbb;hp=bdf4e96ca1481193fc621f30940f478e106f6173;hpb=859b1e7b0f6e92f3a555b79289ce806106a72804;p=lml.git diff --git a/files.lisp b/files.lisp index bdf4e96..cf1633f 100644 --- a/files.lisp +++ b/files.lisp @@ -14,8 +14,7 @@ ;;;; (http://www.gnu.org/licenses/gpl.html) ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :lml) +(in-package #:lml) (eval-when (:compile-toplevel :load-toplevel :execute) (defvar *output-dir* nil) @@ -61,8 +60,8 @@ (defun lml-load-path (file) (if (probe-file file) (with-open-file (in file :direction :input) - (do ((form (read in nil 'lml::eof) (read in nil 'lml::eof))) - ((eq form 'lml::eof)) + (do ((form (read in nil 'eof) (read in nil 'eof))) + ((eq form 'eof)) (eval form))) (format *trace-output* "Warning: unable to load LML file ~S" file)))