mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-28 10:56:36 +00:00
* thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
(thumbs-thumbsdir): Make .emacs.d if it does not exist.
This commit is contained in:
parent
4cf716044e
commit
6c060884e5
@ -1,3 +1,8 @@
|
||||
2005-10-30 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
|
||||
(thumbs-thumbsdir): Make .emacs.d if it does not exist.
|
||||
|
||||
2005-10-30 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* net/tramp.el (tramp-chunksize): Escape parentheses in docstring
|
||||
|
@ -65,7 +65,7 @@
|
||||
:version "22.1"
|
||||
:group 'multimedia)
|
||||
|
||||
(defcustom thumbs-thumbsdir "~/.emacs-thumbs"
|
||||
(defcustom thumbs-thumbsdir "~/.emacs.d/thumbs"
|
||||
"*Directory to store thumbnails."
|
||||
:type 'directory
|
||||
:group 'thumbs)
|
||||
@ -190,7 +190,7 @@ Create the thumbnails directory if it does not exist."
|
||||
(let ((thumbs-thumbsdir (file-name-as-directory
|
||||
(expand-file-name thumbs-thumbsdir))))
|
||||
(unless (file-directory-p thumbs-thumbsdir)
|
||||
(make-directory thumbs-thumbsdir)
|
||||
(make-directory thumbs-thumbsdir t)
|
||||
(message "Creating thumbnails directory"))
|
||||
thumbs-thumbsdir))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user