diff options
| author | Juanma Barranquero | 2008-10-25 00:46:25 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-10-25 00:46:25 +0000 |
| commit | ea6c930a8dd83a4e7d7a640c02e8a791458178c0 (patch) | |
| tree | 4e9593e3fb14876a5de7c3e3e3ff6efb11c6a2f2 | |
| parent | ba28670836a63cf39032990e8a7f17147e9b3f30 (diff) | |
| download | emacs-ea6c930a8dd83a4e7d7a640c02e8a791458178c0.tar.gz emacs-ea6c930a8dd83a4e7d7a640c02e8a791458178c0.zip | |
* 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.
| -rw-r--r-- | lisp/ChangeLog | 33 | ||||
| -rw-r--r-- | lisp/completion.el | 10 | ||||
| -rw-r--r-- | lisp/filesets.el | 14 | ||||
| -rw-r--r-- | lisp/image-dired.el | 53 | ||||
| -rw-r--r-- | lisp/play/gamegrid.el | 12 | ||||
| -rw-r--r-- | lisp/savehist.el | 12 | ||||
| -rw-r--r-- | lisp/startup.el | 12 | ||||
| -rw-r--r-- | lisp/thumbs.el | 10 | ||||
| -rw-r--r-- | lisp/tutorial.el | 2 |
9 files changed, 96 insertions, 62 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 29139842fd9..5c5816a6ec6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,36 @@ | |||
| 1 | 2008-10-25 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * completion.el (add-completion-to-head, add-completion): Doc fixes. | ||
| 4 | (completion-search-next, add-completions-from-file): | ||
| 5 | Fix typos in docstrings. | ||
| 6 | |||
| 7 | * filesets.el (filesets-menu-ensure-use-cached) | ||
| 8 | (filesets-ingroup-patterns, filesets-filetype-property): | ||
| 9 | * tutorial.el (get-lang-string): | ||
| 10 | * play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score): | ||
| 11 | Fix typos in docstrings. | ||
| 12 | |||
| 13 | * image-dired.el (image-dired-dired-after-readin-hook): Doc fix. | ||
| 14 | (image-dired-line-up-method, image-dired-thumb-size) | ||
| 15 | (image-dired-cmd-write-exif-data-options, image-dired-write-tags) | ||
| 16 | (image-dired-track-original-file, image-dired-track-thumbnail) | ||
| 17 | (image-dired-dired-next-line, image-dired-dired-previous-line) | ||
| 18 | (image-dired-write-comments): Reflow docstrings. | ||
| 19 | (image-dired-show-all-from-dir-max-files) | ||
| 20 | (image-dired-format-properties-string, image-dired-create-thumbs) | ||
| 21 | (image-dired-mark-tagged-files, image-dired-gallery-generate): | ||
| 22 | Fix typos in docstrings. | ||
| 23 | |||
| 24 | * savehist.el (savehist-save-minibuffer-history, savehist-file) | ||
| 25 | (savehist-additional-variables, savehist-ignored-variables) | ||
| 26 | (savehist-file-modes, savehist-autosave-interval): | ||
| 27 | * startup.el (inhibit-startup-echo-area-message, inhibit-default-init) | ||
| 28 | (inhibit-startup-buffer-menu, mail-host-address, user-mail-address) | ||
| 29 | (fancy-splash-image): | ||
| 30 | * thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief) | ||
| 31 | (thumbs-conversion-program, thumbs-margin): | ||
| 32 | Remove spurious * in docstrings. | ||
| 33 | |||
| 1 | 2008-10-25 Aaron S. Hawley <aaronh@garden.org> | 34 | 2008-10-25 Aaron S. Hawley <aaronh@garden.org> |
| 2 | 35 | ||
| 3 | * thingatpt.el (end-of-sexp, beginning-of-sexp) | 36 | * thingatpt.el (end-of-sexp, beginning-of-sexp) |
diff --git a/lisp/completion.el b/lisp/completion.el index 2f925dd2066..de18325a43b 100644 --- a/lisp/completion.el +++ b/lisp/completion.el | |||
| @@ -1163,7 +1163,7 @@ Returns the completion entry." | |||
| 1163 | (defun add-completion-to-head (completion-string) | 1163 | (defun add-completion-to-head (completion-string) |
| 1164 | "If COMPLETION-STRING is not in the database, add it to prefix list. | 1164 | "If COMPLETION-STRING is not in the database, add it to prefix list. |
| 1165 | We add COMPLETION-STRING to the head of the appropriate prefix list, | 1165 | We add COMPLETION-STRING to the head of the appropriate prefix list, |
| 1166 | or it to the head of the list. | 1166 | or to the head of the list. |
| 1167 | COMPLETION-STRING must be longer than `completion-prefix-min-length'. | 1167 | COMPLETION-STRING must be longer than `completion-prefix-min-length'. |
| 1168 | Updates the saved string with the supplied string. | 1168 | Updates the saved string with the supplied string. |
| 1169 | This must be very fast. | 1169 | This must be very fast. |
| @@ -1307,8 +1307,8 @@ String must be longer than `completion-prefix-min-length'." | |||
| 1307 | 1307 | ||
| 1308 | (defun add-completion (string &optional num-uses last-use-time) | 1308 | (defun add-completion (string &optional num-uses last-use-time) |
| 1309 | "Add STRING to completion list, or move it to head of list. | 1309 | "Add STRING to completion list, or move it to head of list. |
| 1310 | The completion is altered appropriately if num-uses and/or last-use-time is | 1310 | The completion is altered appropriately if NUM-USES and/or LAST-USE-TIME |
| 1311 | specified." | 1311 | are specified." |
| 1312 | (interactive (interactive-completion-string-reader "Completion to add")) | 1312 | (interactive (interactive-completion-string-reader "Completion to add")) |
| 1313 | (check-completion-length string) | 1313 | (check-completion-length string) |
| 1314 | (let* ((current-completion-source (if (interactive-p) | 1314 | (let* ((current-completion-source (if (interactive-p) |
| @@ -1457,7 +1457,7 @@ STRING must be longer than `completion-prefix-min-length'." | |||
| 1457 | (defun completion-search-next (index) | 1457 | (defun completion-search-next (index) |
| 1458 | "Return the next completion entry. | 1458 | "Return the next completion entry. |
| 1459 | If INDEX is out of sequence, reset and start from the top. | 1459 | If INDEX is out of sequence, reset and start from the top. |
| 1460 | If there are no more entries, try cdabbrev and returns only a string." | 1460 | If there are no more entries, try cdabbrev and return only a string." |
| 1461 | (cond | 1461 | (cond |
| 1462 | ((= index (setq cmpl-last-index (1+ cmpl-last-index))) | 1462 | ((= index (setq cmpl-last-index (1+ cmpl-last-index))) |
| 1463 | (completion-search-peek t)) | 1463 | (completion-search-peek t)) |
| @@ -1693,7 +1693,7 @@ Prefix args :: | |||
| 1693 | 1693 | ||
| 1694 | ;; User interface | 1694 | ;; User interface |
| 1695 | (defun add-completions-from-file (file) | 1695 | (defun add-completions-from-file (file) |
| 1696 | "Parse possible completions from a FILE and add them to data base." | 1696 | "Parse possible completions from a FILE and add them to database." |
| 1697 | (interactive "fFile: ") | 1697 | (interactive "fFile: ") |
| 1698 | (setq file (expand-file-name file)) | 1698 | (setq file (expand-file-name file)) |
| 1699 | (let* ((buffer (get-file-buffer file)) | 1699 | (let* ((buffer (get-file-buffer file)) |
diff --git a/lisp/filesets.el b/lisp/filesets.el index 6bd6d304175..8fd5a2b2e84 100644 --- a/lisp/filesets.el +++ b/lisp/filesets.el | |||
| @@ -144,8 +144,8 @@ file -- before loading filesets.el. | |||
| 144 | 144 | ||
| 145 | So, when should you think about setting this value to t? If filesets.el | 145 | So, when should you think about setting this value to t? If filesets.el |
| 146 | is loaded before user customizations. Thus, if (require 'filesets) | 146 | is loaded before user customizations. Thus, if (require 'filesets) |
| 147 | precedes the custom-set-variables command or, for XEmacs, if init.el is | 147 | precedes the `custom-set-variables' command or, for XEmacs, if init.el |
| 148 | loaded before custom.el, set this variable to t.") | 148 | is loaded before custom.el, set this variable to t.") |
| 149 | 149 | ||
| 150 | 150 | ||
| 151 | ;;; utils | 151 | ;;; utils |
| @@ -849,10 +849,10 @@ subfile can't be found. | |||
| 849 | in the pattern holding the subfile's name. 0 refers the whole | 849 | in the pattern holding the subfile's name. 0 refers the whole |
| 850 | match, 1 to the first group. | 850 | match, 1 to the first group. |
| 851 | 851 | ||
| 852 | :stubp FUNCTION ... if (FUNCTION MASTER INCLUDED-FILE) returns non-nil, | 852 | :stubp FUNCTION ... If (FUNCTION MASTER INCLUDED-FILE) returns non-nil, |
| 853 | INCLUDED-FILE is a stub -- see below. | 853 | INCLUDED-FILE is a stub -- see below. |
| 854 | 854 | ||
| 855 | :stub-flag ... files of this type are stubs -- see below. | 855 | :stub-flag ... Files of this type are stubs -- see below. |
| 856 | 856 | ||
| 857 | :scan-depth INTEGER (default: 0) ... Whether included files should be | 857 | :scan-depth INTEGER (default: 0) ... Whether included files should be |
| 858 | rescanned. Set this to 0 to disable re-scanning of included file. | 858 | rescanned. Set this to 0 to disable re-scanning of included file. |
| @@ -1278,11 +1278,11 @@ the \"Grep <<selection>>\" command | |||
| 1278 | 1278 | ||
| 1279 | on-capture-output (:capture-output) ... Capture output of an external viewer | 1279 | on-capture-output (:capture-output) ... Capture output of an external viewer |
| 1280 | 1280 | ||
| 1281 | on-ls ... not used | 1281 | on-ls ... Not used |
| 1282 | 1282 | ||
| 1283 | on-cmd ... not used | 1283 | on-cmd ... Not used |
| 1284 | 1284 | ||
| 1285 | on-close-all ... not used" | 1285 | on-close-all ... Not used" |
| 1286 | (let ((def (filesets-eviewer-get-props | 1286 | (let ((def (filesets-eviewer-get-props |
| 1287 | (or entry | 1287 | (or entry |
| 1288 | (filesets-get-external-viewer filename))))) | 1288 | (filesets-get-external-viewer filename))))) |
diff --git a/lisp/image-dired.el b/lisp/image-dired.el index f9f1a334e76..d73657e9ffd 100644 --- a/lisp/image-dired.el +++ b/lisp/image-dired.el | |||
| @@ -366,8 +366,8 @@ Used together with `image-dired-cmd-write-exif-data-options'." | |||
| 366 | "%p -%t=\"%v\" \"%f\"" | 366 | "%p -%t=\"%v\" \"%f\"" |
| 367 | "Format of command used to write EXIF data. | 367 | "Format of command used to write EXIF data. |
| 368 | Available options are %p which is replaced by | 368 | Available options are %p which is replaced by |
| 369 | `image-dired-cmd-write-exif-data-program', %f which is replaced by the | 369 | `image-dired-cmd-write-exif-data-program', %f which is replaced by |
| 370 | image file name, %t which is replaced by the tag name and %v | 370 | the image file name, %t which is replaced by the tag name and %v |
| 371 | which is replaced by the tag value." | 371 | which is replaced by the tag value." |
| 372 | :type 'string | 372 | :type 'string |
| 373 | :group 'image-dired) | 373 | :group 'image-dired) |
| @@ -397,7 +397,8 @@ Used by `image-dired-gallery-generate' to leave out \"hidden\" images." | |||
| 397 | 397 | ||
| 398 | (defcustom image-dired-thumb-size (if (eq 'standard image-dired-thumbnail-storage) 128 100) | 398 | (defcustom image-dired-thumb-size (if (eq 'standard image-dired-thumbnail-storage) 128 100) |
| 399 | "Size of thumbnails, in pixels. | 399 | "Size of thumbnails, in pixels. |
| 400 | This is the default size for both `image-dired-thumb-width' and `image-dired-thumb-height'." | 400 | This is the default size for both `image-dired-thumb-width' |
| 401 | and `image-dired-thumb-height'." | ||
| 401 | :type 'integer | 402 | :type 'integer |
| 402 | :group 'image-dired) | 403 | :group 'image-dired) |
| 403 | 404 | ||
| @@ -424,11 +425,11 @@ This is where you see the cursor." | |||
| 424 | 425 | ||
| 425 | (defcustom image-dired-line-up-method 'dynamic | 426 | (defcustom image-dired-line-up-method 'dynamic |
| 426 | "Default method for line-up of thumbnails in thumbnail buffer. | 427 | "Default method for line-up of thumbnails in thumbnail buffer. |
| 427 | Used by `image-dired-display-thumbs' and other functions that needs to | 428 | Used by `image-dired-display-thumbs' and other functions that needs |
| 428 | line-up thumbnails. Dynamic means to use the available width of the | 429 | to line-up thumbnails. Dynamic means to use the available width of |
| 429 | window containing the thumbnail buffer, Fixed means to use | 430 | the window containing the thumbnail buffer, Fixed means to use |
| 430 | `image-dired-thumbs-per-row', Interactive is for asking the user, and No | 431 | `image-dired-thumbs-per-row', Interactive is for asking the user, |
| 431 | line-up means that no automatic line-up will be done." | 432 | and No line-up means that no automatic line-up will be done." |
| 432 | :type '(choice :tag "Default line-up method" | 433 | :type '(choice :tag "Default line-up method" |
| 433 | (const :tag "Dynamic" dynamic) | 434 | (const :tag "Dynamic" dynamic) |
| 434 | (const :tag "Fixed" fixed) | 435 | (const :tag "Fixed" fixed) |
| @@ -509,7 +510,7 @@ Used by `image-dired-copy-with-exif-file-name'." | |||
| 509 | :group 'image-dired) | 510 | :group 'image-dired) |
| 510 | 511 | ||
| 511 | (defcustom image-dired-show-all-from-dir-max-files 50 | 512 | (defcustom image-dired-show-all-from-dir-max-files 50 |
| 512 | "Maximum number of files to show using `image-dired-show-all-from-dir'. | 513 | "Maximum number of files to show using `image-dired-show-all-from-dir' |
| 513 | before warning the user." | 514 | before warning the user." |
| 514 | :type 'integer | 515 | :type 'integer |
| 515 | :group 'image-dired) | 516 | :group 'image-dired) |
| @@ -655,7 +656,7 @@ according to the Thumbnail Managing Standard." | |||
| 655 | 656 | ||
| 656 | (defun image-dired-dired-after-readin-hook () | 657 | (defun image-dired-dired-after-readin-hook () |
| 657 | "Relocate existing thumbnail overlays in dired buffer after reverting. | 658 | "Relocate existing thumbnail overlays in dired buffer after reverting. |
| 658 | Move them to their corresponding files if they are still exist. | 659 | Move them to their corresponding files if they still exist. |
| 659 | Otherwise, delete overlays." | 660 | Otherwise, delete overlays." |
| 660 | (mapc (lambda (overlay) | 661 | (mapc (lambda (overlay) |
| 661 | (when (overlay-get overlay 'put-image) | 662 | (when (overlay-get overlay 'put-image) |
| @@ -885,8 +886,8 @@ Signal error if there are problems creating it." | |||
| 885 | 886 | ||
| 886 | (defun image-dired-write-tags (file-tags) | 887 | (defun image-dired-write-tags (file-tags) |
| 887 | "Write file tags to database. | 888 | "Write file tags to database. |
| 888 | Write each file and tag in FILE-TAGS to the database. FILE-TAGS | 889 | Write each file and tag in FILE-TAGS to the database. |
| 889 | is an alist in the following form: | 890 | FILE-TAGS is an alist in the following form: |
| 890 | ((FILE . TAG) ... )" | 891 | ((FILE . TAG) ... )" |
| 891 | (image-dired-sane-db-file) | 892 | (image-dired-sane-db-file) |
| 892 | (let (end file tag) | 893 | (let (end file tag) |
| @@ -1021,8 +1022,8 @@ With prefix argument ARG, remove tag from file at point." | |||
| 1021 | 1022 | ||
| 1022 | (defun image-dired-track-original-file () | 1023 | (defun image-dired-track-original-file () |
| 1023 | "Track the original file in the associated dired buffer. | 1024 | "Track the original file in the associated dired buffer. |
| 1024 | See documentation for `image-dired-toggle-movement-tracking'. Interactive | 1025 | See documentation for `image-dired-toggle-movement-tracking'. |
| 1025 | use only useful if `image-dired-track-movement' is nil." | 1026 | Interactive use only useful if `image-dired-track-movement' is nil." |
| 1026 | (interactive) | 1027 | (interactive) |
| 1027 | (let ((old-buf (current-buffer)) | 1028 | (let ((old-buf (current-buffer)) |
| 1028 | (dired-buf (image-dired-associated-dired-buffer)) | 1029 | (dired-buf (image-dired-associated-dired-buffer)) |
| @@ -1047,8 +1048,8 @@ position in the other buffer." | |||
| 1047 | 1048 | ||
| 1048 | (defun image-dired-track-thumbnail () | 1049 | (defun image-dired-track-thumbnail () |
| 1049 | "Track current dired file's thumb in `image-dired-thumbnail-buffer'. | 1050 | "Track current dired file's thumb in `image-dired-thumbnail-buffer'. |
| 1050 | This is almost the same as what `image-dired-track-original-file' does, but | 1051 | This is almost the same as what `image-dired-track-original-file' does, |
| 1051 | the other way around." | 1052 | but the other way around." |
| 1052 | (let ((file (dired-get-filename)) | 1053 | (let ((file (dired-get-filename)) |
| 1053 | (old-buf (current-buffer)) | 1054 | (old-buf (current-buffer)) |
| 1054 | prop-val found) | 1055 | prop-val found) |
| @@ -1071,8 +1072,8 @@ the other way around." | |||
| 1071 | 1072 | ||
| 1072 | (defun image-dired-dired-next-line (&optional arg) | 1073 | (defun image-dired-dired-next-line (&optional arg) |
| 1073 | "Call `dired-next-line', then track thumbnail. | 1074 | "Call `dired-next-line', then track thumbnail. |
| 1074 | This can safely replace `dired-next-line'. With prefix argument, move | 1075 | This can safely replace `dired-next-line'. |
| 1075 | ARG lines." | 1076 | With prefix argument, move ARG lines." |
| 1076 | (interactive "P") | 1077 | (interactive "P") |
| 1077 | (dired-next-line (or arg 1)) | 1078 | (dired-next-line (or arg 1)) |
| 1078 | (if image-dired-track-movement | 1079 | (if image-dired-track-movement |
| @@ -1080,8 +1081,8 @@ ARG lines." | |||
| 1080 | 1081 | ||
| 1081 | (defun image-dired-dired-previous-line (&optional arg) | 1082 | (defun image-dired-dired-previous-line (&optional arg) |
| 1082 | "Call `dired-previous-line', then track thumbnail. | 1083 | "Call `dired-previous-line', then track thumbnail. |
| 1083 | This can safely replace `dired-previous-line'. With prefix argument, | 1084 | This can safely replace `dired-previous-line'. |
| 1084 | move ARG lines." | 1085 | With prefix argument, move ARG lines." |
| 1085 | (interactive "P") | 1086 | (interactive "P") |
| 1086 | (dired-previous-line (or arg 1)) | 1087 | (dired-previous-line (or arg 1)) |
| 1087 | (if image-dired-track-movement | 1088 | (if image-dired-track-movement |
| @@ -1158,7 +1159,7 @@ image." | |||
| 1158 | (defun image-dired-format-properties-string (buf file props comment) | 1159 | (defun image-dired-format-properties-string (buf file props comment) |
| 1159 | "Format display properties. | 1160 | "Format display properties. |
| 1160 | BUF is the associated dired buffer, FILE is the original image file | 1161 | BUF is the associated dired buffer, FILE is the original image file |
| 1161 | name, PROPS is a list of tags and COMMENT is the image files's | 1162 | name, PROPS is a list of tags and COMMENT is the image file's |
| 1162 | comment." | 1163 | comment." |
| 1163 | (format-spec | 1164 | (format-spec |
| 1164 | image-dired-display-properties-format | 1165 | image-dired-display-properties-format |
| @@ -1588,7 +1589,7 @@ Note that n, p and <down> and <up> will be hijacked and bound to | |||
| 1588 | (defun image-dired-create-thumbs (&optional arg) | 1589 | (defun image-dired-create-thumbs (&optional arg) |
| 1589 | "Create thumbnail images for all marked files in dired. | 1590 | "Create thumbnail images for all marked files in dired. |
| 1590 | With prefix argument ARG, create thumbnails even if they already exist | 1591 | With prefix argument ARG, create thumbnails even if they already exist |
| 1591 | \(i.e. use this to refresh your thumbnails)." | 1592 | \(i.e. use this to refresh your thumbnails)." |
| 1592 | (interactive "P") | 1593 | (interactive "P") |
| 1593 | (let (curr-file thumb-name files count) | 1594 | (let (curr-file thumb-name files count) |
| 1594 | (setq files (dired-get-marked-files)) | 1595 | (setq files (dired-get-marked-files)) |
| @@ -2048,8 +2049,8 @@ function. The result is a couple of new files in | |||
| 2048 | 2049 | ||
| 2049 | (defun image-dired-write-comments (file-comments) | 2050 | (defun image-dired-write-comments (file-comments) |
| 2050 | "Write file comments to database. | 2051 | "Write file comments to database. |
| 2051 | Write file comments to one or more files. FILE-COMMENTS is an alist on | 2052 | Write file comments to one or more files. |
| 2052 | the following form: | 2053 | FILE-COMMENTS is an alist on the following form: |
| 2053 | ((FILE . COMMENT) ... )" | 2054 | ((FILE . COMMENT) ... )" |
| 2054 | (image-dired-sane-db-file) | 2055 | (image-dired-sane-db-file) |
| 2055 | (let (end comment-beg-pos comment-end-pos file comment) | 2056 | (let (end comment-beg-pos comment-end-pos file comment) |
| @@ -2149,7 +2150,7 @@ A `tag' is a keyword, a piece of meta data, associated with an | |||
| 2149 | image file and stored in image-dired's database file. This command | 2150 | image file and stored in image-dired's database file. This command |
| 2150 | lets you input a regexp and this will be matched against all tags | 2151 | lets you input a regexp and this will be matched against all tags |
| 2151 | on all image files in the database file. The files that have a | 2152 | on all image files in the database file. The files that have a |
| 2152 | matching tags will be marked in the dired buffer." | 2153 | matching tag will be marked in the dired buffer." |
| 2153 | (interactive) | 2154 | (interactive) |
| 2154 | (image-dired-sane-db-file) | 2155 | (image-dired-sane-db-file) |
| 2155 | (let ((tag (read-string "Mark tagged files (regexp): ")) | 2156 | (let ((tag (read-string "Mark tagged files (regexp): ")) |
| @@ -2360,7 +2361,7 @@ image-dired-file-comment-list: | |||
| 2360 | "Generate gallery pages. | 2361 | "Generate gallery pages. |
| 2361 | First we create a couple of Lisp structures from the database to make | 2362 | First we create a couple of Lisp structures from the database to make |
| 2362 | it easier to generate, then HTML-files are created in | 2363 | it easier to generate, then HTML-files are created in |
| 2363 | `image-dired-gallery-dir'" | 2364 | `image-dired-gallery-dir'." |
| 2364 | (interactive) | 2365 | (interactive) |
| 2365 | (if (eq 'per-directory image-dired-thumbnail-storage) | 2366 | (if (eq 'per-directory image-dired-thumbnail-storage) |
| 2366 | (error "Currently, gallery generation is not supported \ | 2367 | (error "Currently, gallery generation is not supported \ |
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index 824e55043ec..024b076b5f7 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el | |||
| @@ -62,7 +62,7 @@ | |||
| 62 | (defvar gamegrid-buffer-start 1) | 62 | (defvar gamegrid-buffer-start 1) |
| 63 | 63 | ||
| 64 | (defvar gamegrid-score-file-length 50 | 64 | (defvar gamegrid-score-file-length 50 |
| 65 | "Number of high scores to keep") | 65 | "Number of high scores to keep.") |
| 66 | 66 | ||
| 67 | (defvar gamegrid-user-score-file-directory | 67 | (defvar gamegrid-user-score-file-directory |
| 68 | (locate-user-emacs-file "games/") | 68 | (locate-user-emacs-file "games/") |
| @@ -438,19 +438,19 @@ static unsigned char gamegrid_bits[] = { | |||
| 438 | "Add the current score to the high score file. | 438 | "Add the current score to the high score file. |
| 439 | 439 | ||
| 440 | On POSIX systems there may be a shared game directory for all users in | 440 | On POSIX systems there may be a shared game directory for all users in |
| 441 | which the scorefiles are kept. On such systems Emacs doesn't create | 441 | which the scorefiles are kept. On such systems Emacs doesn't create |
| 442 | the score file FILE in this directory, if it doesn't already exist. In | 442 | the score file FILE in this directory, if it doesn't already exist. |
| 443 | this case Emacs searches for FILE in the directory specified by | 443 | In this case Emacs searches for FILE in the directory specified by |
| 444 | `gamegrid-user-score-file-directory' and creates it there, if | 444 | `gamegrid-user-score-file-directory' and creates it there, if |
| 445 | necessary. | 445 | necessary. |
| 446 | 446 | ||
| 447 | To add the score file for a game to the system wide shared game | 447 | To add the score file for a game to the system wide shared game |
| 448 | directory, create the file with the shell command \"touch\" in this | 448 | directory, create the file with the shell command \"touch\" in this |
| 449 | directory and make sure that it is owned by the correct user and | 449 | directory and make sure that it is owned by the correct user and |
| 450 | group. You probably need special user privileges to do this. | 450 | group. You probably need special user privileges to do this. |
| 451 | 451 | ||
| 452 | On non-POSIX systems Emacs searches for FILE in the directory | 452 | On non-POSIX systems Emacs searches for FILE in the directory |
| 453 | specified by the variable `temporary-file-directory'. If necessary, | 453 | specified by the variable `temporary-file-directory'. If necessary, |
| 454 | FILE is created there." | 454 | FILE is created there." |
| 455 | (case system-type | 455 | (case system-type |
| 456 | ((ms-dos windows-nt) | 456 | ((ms-dos windows-nt) |
diff --git a/lisp/savehist.el b/lisp/savehist.el index 55a724452db..47c68551e5f 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el | |||
| @@ -69,14 +69,14 @@ interface." | |||
| 69 | :group 'savehist) | 69 | :group 'savehist) |
| 70 | 70 | ||
| 71 | (defcustom savehist-save-minibuffer-history t | 71 | (defcustom savehist-save-minibuffer-history t |
| 72 | "*If non-nil, save all recorded minibuffer histories. | 72 | "If non-nil, save all recorded minibuffer histories. |
| 73 | If you want to save only specific histories, use `savehist-save-hook' to | 73 | If you want to save only specific histories, use `savehist-save-hook' to |
| 74 | modify the value of `savehist-minibuffer-history-variables'." | 74 | modify the value of `savehist-minibuffer-history-variables'." |
| 75 | :type 'boolean | 75 | :type 'boolean |
| 76 | :group 'savehist) | 76 | :group 'savehist) |
| 77 | 77 | ||
| 78 | (defcustom savehist-additional-variables () | 78 | (defcustom savehist-additional-variables () |
| 79 | "*List of additional variables to save. | 79 | "List of additional variables to save. |
| 80 | Each element is a symbol whose value will be persisted across Emacs | 80 | Each element is a symbol whose value will be persisted across Emacs |
| 81 | sessions that use savehist. The contents of variables should be | 81 | sessions that use savehist. The contents of variables should be |
| 82 | printable with the Lisp printer. You don't need to add minibuffer | 82 | printable with the Lisp printer. You don't need to add minibuffer |
| @@ -91,13 +91,13 @@ minibuffer histories, such as `compile-command' or `kill-ring'." | |||
| 91 | :group 'savehist) | 91 | :group 'savehist) |
| 92 | 92 | ||
| 93 | (defcustom savehist-ignored-variables nil ;; '(command-history) | 93 | (defcustom savehist-ignored-variables nil ;; '(command-history) |
| 94 | "*List of additional variables not to save." | 94 | "List of additional variables not to save." |
| 95 | :type '(repeat variable) | 95 | :type '(repeat variable) |
| 96 | :group 'savehist) | 96 | :group 'savehist) |
| 97 | 97 | ||
| 98 | (defcustom savehist-file | 98 | (defcustom savehist-file |
| 99 | (locate-user-emacs-file "history" ".emacs-history") | 99 | (locate-user-emacs-file "history" ".emacs-history") |
| 100 | "*File name where minibuffer history is saved to and loaded from. | 100 | "File name where minibuffer history is saved to and loaded from. |
| 101 | The minibuffer history is a series of Lisp expressions loaded | 101 | The minibuffer history is a series of Lisp expressions loaded |
| 102 | automatically when `savehist-mode' is turned on. See `savehist-mode' | 102 | automatically when `savehist-mode' is turned on. See `savehist-mode' |
| 103 | for more details. | 103 | for more details. |
| @@ -109,7 +109,7 @@ set to a coding system that exists in both emacsen." | |||
| 109 | :group 'savehist) | 109 | :group 'savehist) |
| 110 | 110 | ||
| 111 | (defcustom savehist-file-modes #o600 | 111 | (defcustom savehist-file-modes #o600 |
| 112 | "*Default permissions of the history file. | 112 | "Default permissions of the history file. |
| 113 | This is decimal, not octal. The default is 384 (0600 in octal). | 113 | This is decimal, not octal. The default is 384 (0600 in octal). |
| 114 | Set to nil to use the default permissions that Emacs uses, typically | 114 | Set to nil to use the default permissions that Emacs uses, typically |
| 115 | mandated by umask. The default is a bit more restrictive to protect | 115 | mandated by umask. The default is a bit more restrictive to protect |
| @@ -118,7 +118,7 @@ the user's privacy." | |||
| 118 | :group 'savehist) | 118 | :group 'savehist) |
| 119 | 119 | ||
| 120 | (defcustom savehist-autosave-interval (* 5 60) | 120 | (defcustom savehist-autosave-interval (* 5 60) |
| 121 | "*The interval between autosaves of minibuffer history. | 121 | "The interval between autosaves of minibuffer history. |
| 122 | If set to nil, disables timer-based autosaving." | 122 | If set to nil, disables timer-based autosaving." |
| 123 | :type 'integer | 123 | :type 'integer |
| 124 | :group 'savehist) | 124 | :group 'savehist) |
diff --git a/lisp/startup.el b/lisp/startup.el index 6185cd5975a..1c39c8c95f5 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -66,7 +66,7 @@ you are familiar with the contents of the startup screen." | |||
| 66 | (defvar startup-screen-inhibit-startup-screen nil) | 66 | (defvar startup-screen-inhibit-startup-screen nil) |
| 67 | 67 | ||
| 68 | (defcustom inhibit-startup-echo-area-message nil | 68 | (defcustom inhibit-startup-echo-area-message nil |
| 69 | "*Non-nil inhibits the initial startup echo area message. | 69 | "Non-nil inhibits the initial startup echo area message. |
| 70 | Setting this variable takes effect | 70 | Setting this variable takes effect |
| 71 | only if you do it with the customization buffer | 71 | only if you do it with the customization buffer |
| 72 | or if your `.emacs' file contains a line of this form: | 72 | or if your `.emacs' file contains a line of this form: |
| @@ -80,12 +80,12 @@ the startup message unless he personally acts to inhibit it." | |||
| 80 | :group 'initialization) | 80 | :group 'initialization) |
| 81 | 81 | ||
| 82 | (defcustom inhibit-default-init nil | 82 | (defcustom inhibit-default-init nil |
| 83 | "*Non-nil inhibits loading the `default' library." | 83 | "Non-nil inhibits loading the `default' library." |
| 84 | :type 'boolean | 84 | :type 'boolean |
| 85 | :group 'initialization) | 85 | :group 'initialization) |
| 86 | 86 | ||
| 87 | (defcustom inhibit-startup-buffer-menu nil | 87 | (defcustom inhibit-startup-buffer-menu nil |
| 88 | "*Non-nil inhibits display of buffer list when more than 2 files are loaded." | 88 | "Non-nil inhibits display of buffer list when more than 2 files are loaded." |
| 89 | :type 'boolean | 89 | :type 'boolean |
| 90 | :group 'initialization) | 90 | :group 'initialization) |
| 91 | 91 | ||
| @@ -329,7 +329,7 @@ this variable usefully is to set it while building and dumping Emacs." | |||
| 329 | (error "Customizing `site-run-file' does not work"))) | 329 | (error "Customizing `site-run-file' does not work"))) |
| 330 | 330 | ||
| 331 | (defcustom mail-host-address nil | 331 | (defcustom mail-host-address nil |
| 332 | "*Name of this machine, for purposes of naming users." | 332 | "Name of this machine, for purposes of naming users." |
| 333 | :type '(choice (const nil) string) | 333 | :type '(choice (const nil) string) |
| 334 | :group 'mail) | 334 | :group 'mail) |
| 335 | 335 | ||
| @@ -340,7 +340,7 @@ this variable usefully is to set it while building and dumping Emacs." | |||
| 340 | (system-name)))) | 340 | (system-name)))) |
| 341 | ;; Empty string means "not set yet". | 341 | ;; Empty string means "not set yet". |
| 342 | "") | 342 | "") |
| 343 | "*Full mailing address of this user. | 343 | "Full mailing address of this user. |
| 344 | This is initialized with environment variable `EMAIL' or, as a | 344 | This is initialized with environment variable `EMAIL' or, as a |
| 345 | fallback, using `mail-host-address'. This is done after your | 345 | fallback, using `mail-host-address'. This is done after your |
| 346 | init file is read, in case it sets `mail-host-address'." | 346 | init file is read, in case it sets `mail-host-address'." |
| @@ -1383,7 +1383,7 @@ Each element in the list should be a list of strings or pairs | |||
| 1383 | :group 'initialization) | 1383 | :group 'initialization) |
| 1384 | 1384 | ||
| 1385 | (defcustom fancy-splash-image nil | 1385 | (defcustom fancy-splash-image nil |
| 1386 | "*The image to show in the splash screens, or nil for defaults." | 1386 | "The image to show in the splash screens, or nil for defaults." |
| 1387 | :group 'fancy-splash-screen | 1387 | :group 'fancy-splash-screen |
| 1388 | :type '(choice (const :tag "Default" nil) | 1388 | :type '(choice (const :tag "Default" nil) |
| 1389 | (file :tag "File"))) | 1389 | (file :tag "File"))) |
diff --git a/lisp/thumbs.el b/lisp/thumbs.el index 2c4642a4470..67559eb40c2 100644 --- a/lisp/thumbs.el +++ b/lisp/thumbs.el | |||
| @@ -66,12 +66,12 @@ | |||
| 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 | ||
| @@ -100,7 +100,7 @@ When it reaches that size (in bytes), a warning is sent." | |||
| 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) |
| @@ -112,12 +112,12 @@ It must be 'convert'." | |||
| 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) |
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 456fe5f401e..6ae54f4090c 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -929,7 +929,7 @@ See `get-lang-string' for more information.") | |||
| 929 | In certain places Emacs can replace a string shown to the user with | 929 | In certain places Emacs can replace a string shown to the user with |
| 930 | a language specific string. This function retrieves such strings. | 930 | a language specific string. This function retrieves such strings. |
| 931 | 931 | ||
| 932 | LANG is the language specification. It should be one of those | 932 | LANG is the language specification. It should be one of those |
| 933 | strings that can be returned by `read-language-name'. STRINGID | 933 | strings that can be returned by `read-language-name'. STRINGID |
| 934 | is a symbol that specifies the string to retrieve. | 934 | is a symbol that specifies the string to retrieve. |
| 935 | 935 | ||