summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2016-12-14 20:36:06 -0500
committerMark Oteiza <mvoteiza@udel.edu>2016-12-14 20:36:06 -0500
commitd0388bd12d68d0f40f655474c970d572a133f5e7 (patch)
treebe2467b88601d1b025db659da7e4474c97d5a554 /lisp
parent0c77bcb3935e5dd82baeb2cd5fecbb45879d11b0 (diff)
downloademacs-d0388bd12d68d0f40f655474c970d572a133f5e7.tar.gz
* lisp/image-dired.el (image-dired-create-thumb): Create parent directories.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/image-dired.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index 61cf89c935d..a23dbfead7e 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -648,7 +648,7 @@ according to the Thumbnail Managing Standard."
(when (not (file-exists-p
(setq thumbnail-dir (file-name-directory thumbnail-file))))
(message "Creating thumbnail directory.")
- (make-directory thumbnail-dir))
+ (make-directory thumbnail-dir t))
(call-process shell-file-name nil nil nil shell-command-switch command)))
;;;###autoload