aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2021-10-25 02:12:34 +0200
committerStefan Kangas2021-10-25 02:12:34 +0200
commitbb475e10b9f0b1b76618dc6cb33237e36d30bbc3 (patch)
treee740be544897138390140d81a1f938b4b1960656
parentf5b4bb4a6fa3adcb653cab5dc760745b896320bb (diff)
downloademacs-bb475e10b9f0b1b76618dc6cb33237e36d30bbc3.tar.gz
emacs-bb475e10b9f0b1b76618dc6cb33237e36d30bbc3.zip
Clarify two image-dired docstrings
* lisp/image-dired.el (image-dired-dir): Doc fix; clarify that thumbnails will be saved in "$XDG_CACHE_HOME/thumbnails", as per the Thumbnail Managing Standard. (image-dired-thumb-size): Doc fix; clarify that this option will be ignored when using the Thumbnail Managing Standard.
-rw-r--r--lisp/image-dired.el13
1 files changed, 11 insertions, 2 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index e5fbfcf9278..2c289646edd 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -163,7 +163,12 @@
163 :group 'multimedia) 163 :group 'multimedia)
164 164
165(defcustom image-dired-dir (locate-user-emacs-file "image-dired/") 165(defcustom image-dired-dir (locate-user-emacs-file "image-dired/")
166 "Directory where thumbnail images are stored." 166 "Directory where thumbnail images are stored.
167
168The value of this option will be ignored if Image Dired is
169customized to use the Thumbnail Managing Standard; they will be
170saved in \"$XDG_CACHE_HOME/thumbnails/\" instead. See
171`image-dired-thumbnail-storage'."
167 :type 'directory) 172 :type 'directory)
168 173
169(defcustom image-dired-thumbnail-storage 'use-image-dired-dir 174(defcustom image-dired-thumbnail-storage 'use-image-dired-dir
@@ -406,7 +411,11 @@ Used by `image-dired-gallery-generate' to leave out \"hidden\" images."
406 (t 100)) 411 (t 100))
407 "Size of thumbnails, in pixels. 412 "Size of thumbnails, in pixels.
408This is the default size for both `image-dired-thumb-width' 413This is the default size for both `image-dired-thumb-width'
409and `image-dired-thumb-height'." 414and `image-dired-thumb-height'.
415
416The value of this option will be ignored if Image Dired is
417customized to use the Thumbnail Managing Standard; the standard
418sizes will be used instead. See `image-dired-thumbnail-storage'."
410 :type 'integer) 419 :type 'integer)
411 420
412(defcustom image-dired-thumb-width image-dired-thumb-size 421(defcustom image-dired-thumb-width image-dired-thumb-size