From 0c172e7483018c6c6c3423eed89c3e99b232cace Mon Sep 17 00:00:00 2001 From: minakaji Date: Sat, 23 Jun 2001 04:59:19 +0000 Subject: [PATCH] * install.el (install-elisp-modules): Do not make DEST directory when JUST-PRINT is non-nil. --- ChangeLog | 5 +++++ install.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 566e2ec..026f7bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-06-20 Akihiro MOTOKI + + * install.el (install-elisp-modules): Do not make DEST directory + when JUST-PRINT is non-nil. + 2001-06-01 Tanaka Akira * pccl.el (ccl-compat): Since mule 2.3 accepts `t' and `nil' as `type' diff --git a/install.el b/install.el index 04c026a..775c259 100644 --- a/install.el +++ b/install.el @@ -120,7 +120,8 @@ (princ (format "%s -> %s\n" elc-file dest)))))))) (defun install-elisp-modules (modules src dest &optional just-print) - (or (file-exists-p dest) + (or just-print + (file-exists-p dest) (make-directory dest t)) (mapcar (function -- 1.7.10.4