From 64854cb53ebc983bee970732cfba050fedc8ec0e Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Fri, 2 Sep 2005 17:02:49 +0000 Subject: [PATCH] r10682: file dir handle -- patch by Gary King --- 2/files.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/2/files.lisp b/2/files.lisp index a3dbf6e..db1a9b1 100644 --- a/2/files.lisp +++ b/2/files.lisp @@ -27,7 +27,8 @@ (when (stringp f) (unless (position #\. f) (setq f (concatenate 'string f ".html")))) - (if *sources-dir* + (if (or (and (eq type :source) *sources-dir*) + (and (eq type :output) *output-dir*)) (merge-pathnames (make-pathname :name (pathname-name f) :type (pathname-type f) -- 2.34.1