X-Git-Url: http://git.kpe.io/?p=lml.git;a=blobdiff_plain;f=files.lisp;h=cf1633f736eb1d63a2811f00989bb92d3d4bf285;hp=fd2366b3ff30961f8174128324b6541a2b7272d8;hb=2dcfda178f817bec62b9f51248d96799d254d686;hpb=e741d288978f9a65554235ecb3115db8eef60b54 diff --git a/files.lisp b/files.lisp index fd2366b..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) @@ -43,20 +42,26 @@ (parse-namestring f) f)))) -(defmacro with-dir ((output-dir &key sources) &body body) - (when (stringp output-dir) - (setq output-dir (parse-namestring output-dir))) - (unless sources - (setq sources output-dir)) - `(let ((*output-dir* ,output-dir) - (*sources-dir* ,sources)) - ,@body)) +(defmacro with-dir ((output &key sources) &body body) + (let ((output-dir (gensym)) + (sources-dir (gensym))) + `(let ((,output-dir ,output) + (,sources-dir ,sources)) + (when (stringp ,output-dir) + (setq ,output-dir (parse-namestring ,output-dir))) + (when (stringp ,sources-dir) + (setq ,sources-dir (parse-namestring ,sources-dir))) + (unless ,sources-dir + (setq ,sources-dir ,output-dir)) + (let ((*output-dir* ,output-dir) + (*sources-dir* ,sources-dir)) + ,@body)))) (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)))