diff options
| -rw-r--r-- | lisp/emacs-lisp/comp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 99bf30a4eee..802466550dc 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el | |||
| @@ -2748,9 +2748,9 @@ queued with LOAD %" | |||
| 2748 | comp-deferred-compilation-black-list))) | 2748 | comp-deferred-compilation-black-list))) |
| 2749 | (let* ((out-filename (comp-el-to-eln-filename file)) | 2749 | (let* ((out-filename (comp-el-to-eln-filename file)) |
| 2750 | (out-dir (file-name-directory out-filename))) | 2750 | (out-dir (file-name-directory out-filename))) |
| 2751 | (if (or (file-writable-p out-filename) | 2751 | (unless (file-exists-p out-dir) |
| 2752 | (and (not (file-exists-p out-dir)) | 2752 | (make-directory out-dir t)) |
| 2753 | (file-writable-p (substring out-dir 0 -1)))) | 2753 | (if (file-writable-p out-filename) |
| 2754 | (setf comp-files-queue | 2754 | (setf comp-files-queue |
| 2755 | (append comp-files-queue `((,file . ,load)))) | 2755 | (append comp-files-queue `((,file . ,load)))) |
| 2756 | (display-warning 'comp | 2756 | (display-warning 'comp |