Mercurial > emacs
comparison lisp/thumbs.el @ 99116:2e0e3e5cbd97
* completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
Fix typos in docstrings.
* filesets.el (filesets-menu-ensure-use-cached)
(filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
Fix typos in docstrings.
* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
(image-dired-line-up-method, image-dired-thumb-size)
(image-dired-cmd-write-exif-data-options, image-dired-write-tags)
(image-dired-track-original-file, image-dired-track-thumbnail)
(image-dired-dired-next-line, image-dired-dired-previous-line)
(image-dired-write-comments): Reflow docstrings.
(image-dired-show-all-from-dir-max-files)
(image-dired-format-properties-string, image-dired-create-thumbs)
(image-dired-mark-tagged-files, image-dired-gallery-generate):
Fix typos in docstrings.
* savehist.el (savehist-save-minibuffer-history, savehist-file)
(savehist-additional-variables, savehist-ignored-variables)
(savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
(inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
(fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
(thumbs-conversion-program, thumbs-margin):
Remove spurious * in docstrings.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sat, 25 Oct 2008 00:46:25 +0000 |
parents | 814d2d823dd7 |
children | a9dc0e7c3f2b |
comparison
equal
deleted
inserted
replaced
99115:ec94709902e9 | 99116:2e0e3e5cbd97 |
---|---|
64 "Thumbnails previewer." | 64 "Thumbnails previewer." |
65 :version "22.1" | 65 :version "22.1" |
66 :group 'multimedia) | 66 :group 'multimedia) |
67 | 67 |
68 (defcustom thumbs-thumbsdir (locate-user-emacs-file "thumbs") | 68 (defcustom thumbs-thumbsdir (locate-user-emacs-file "thumbs") |
69 "*Directory to store thumbnails." | 69 "Directory to store thumbnails." |
70 :type 'directory | 70 :type 'directory |
71 :group 'thumbs) | 71 :group 'thumbs) |
72 | 72 |
73 (defcustom thumbs-geometry "100x100" | 73 (defcustom thumbs-geometry "100x100" |
74 "*Size of thumbnails." | 74 "Size of thumbnails." |
75 :type 'string | 75 :type 'string |
76 :group 'thumbs) | 76 :group 'thumbs) |
77 | 77 |
78 (defcustom thumbs-per-line 4 | 78 (defcustom thumbs-per-line 4 |
79 "Number of thumbnails per line to show in directory." | 79 "Number of thumbnails per line to show in directory." |
98 (defcustom thumbs-conversion-program | 98 (defcustom thumbs-conversion-program |
99 (if (eq system-type 'windows-nt) | 99 (if (eq system-type 'windows-nt) |
100 "convert.exe" | 100 "convert.exe" |
101 (or (executable-find "convert") | 101 (or (executable-find "convert") |
102 "/usr/X11R6/bin/convert")) | 102 "/usr/X11R6/bin/convert")) |
103 "*Name of conversion program for thumbnails generation. | 103 "Name of conversion program for thumbnails generation. |
104 It must be 'convert'." | 104 It must be 'convert'." |
105 :type 'string | 105 :type 'string |
106 :group 'thumbs) | 106 :group 'thumbs) |
107 | 107 |
108 (defcustom thumbs-setroot-command | 108 (defcustom thumbs-setroot-command |
110 "Command to set the root window." | 110 "Command to set the root window." |
111 :type 'string | 111 :type 'string |
112 :group 'thumbs) | 112 :group 'thumbs) |
113 | 113 |
114 (defcustom thumbs-relief 5 | 114 (defcustom thumbs-relief 5 |
115 "*Size of button-like border around thumbnails." | 115 "Size of button-like border around thumbnails." |
116 :type 'integer | 116 :type 'integer |
117 :group 'thumbs) | 117 :group 'thumbs) |
118 | 118 |
119 (defcustom thumbs-margin 2 | 119 (defcustom thumbs-margin 2 |
120 "*Size of the margin around thumbnails. | 120 "Size of the margin around thumbnails. |
121 This is where you see the cursor." | 121 This is where you see the cursor." |
122 :type 'integer | 122 :type 'integer |
123 :group 'thumbs) | 123 :group 'thumbs) |
124 | 124 |
125 (defcustom thumbs-thumbsdir-auto-clean t | 125 (defcustom thumbs-thumbsdir-auto-clean t |