diff options
| author | Stefan Kangas | 2021-10-25 02:12:34 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2021-10-25 02:12:34 +0200 |
| commit | bb475e10b9f0b1b76618dc6cb33237e36d30bbc3 (patch) | |
| tree | e740be544897138390140d81a1f938b4b1960656 | |
| parent | f5b4bb4a6fa3adcb653cab5dc760745b896320bb (diff) | |
| download | emacs-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.el | 13 |
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 | |||
| 168 | The value of this option will be ignored if Image Dired is | ||
| 169 | customized to use the Thumbnail Managing Standard; they will be | ||
| 170 | saved 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. |
| 408 | This is the default size for both `image-dired-thumb-width' | 413 | This is the default size for both `image-dired-thumb-width' |
| 409 | and `image-dired-thumb-height'." | 414 | and `image-dired-thumb-height'. |
| 415 | |||
| 416 | The value of this option will be ignored if Image Dired is | ||
| 417 | customized to use the Thumbnail Managing Standard; the standard | ||
| 418 | sizes 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 |