r5100: Auto commit for Debian build
[lml.git] / files.lisp
index bdf4e96ca1481193fc621f30940f478e106f6173..cf1633f736eb1d63a2811f00989bb92d3d4bf285 100644 (file)
@@ -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)))