diff options
| -rw-r--r-- | lisp/mh-e/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/mh-e/mh-customize.el | 6 | ||||
| -rw-r--r-- | lisp/mh-e/mh-index.el | 30 |
3 files changed, 30 insertions, 14 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 780b5cd067e..c2c05376cc2 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,5 +1,13 @@ | |||
| 1 | 2005-12-04 Bill Wohler <wohler@newt.com> | 1 | 2005-12-04 Bill Wohler <wohler@newt.com> |
| 2 | 2 | ||
| 3 | * mh-customize.el (mh-new-messages-folders): Rename from | ||
| 4 | mh-index-new-messages-folders. | ||
| 5 | (mh-ticked-messages-folders): Rename from | ||
| 6 | mh-index-ticked-messages-folders. | ||
| 7 | |||
| 8 | * mh-index.el (mh-index-sequenced-messages) | ||
| 9 | (mh-index-new-messages): Ditto. | ||
| 10 | |||
| 3 | * mh-comp.el (mh-forward): Went over all uses of the word "RANGE" | 11 | * mh-comp.el (mh-forward): Went over all uses of the word "RANGE" |
| 4 | in the docstrings and made usage consistent. Generally speaking, | 12 | in the docstrings and made usage consistent. Generally speaking, |
| 5 | "messages in range" and "range of messages" is redundant and just | 13 | "messages in range" and "range of messages" is redundant and just |
diff --git a/lisp/mh-e/mh-customize.el b/lisp/mh-e/mh-customize.el index 0937b7a5843..fc721febfae 100644 --- a/lisp/mh-e/mh-customize.el +++ b/lisp/mh-e/mh-customize.el | |||
| @@ -384,8 +384,9 @@ this option off." | |||
| 384 | 384 | ||
| 385 | ;;; Organizing Your Mail with Folders (:group 'mh-folder) | 385 | ;;; Organizing Your Mail with Folders (:group 'mh-folder) |
| 386 | 386 | ||
| 387 | (defcustom mh-index-new-messages-folders t | 387 | (defcustom mh-new-messages-folders t |
| 388 | "Folders searched for the \"unseen\" sequence. | 388 | "Folders searched for the \"unseen\" sequence. |
| 389 | |||
| 389 | Set this option to \"Inbox\" to search the \"+inbox\" folder or \"All\" to | 390 | Set this option to \"Inbox\" to search the \"+inbox\" folder or \"All\" to |
| 390 | search all of the top level folders. Otherwise, list the folders that should | 391 | search all of the top level folders. Otherwise, list the folders that should |
| 391 | be searched with the \"Choose Folders\" menu item. | 392 | be searched with the \"Choose Folders\" menu item. |
| @@ -396,8 +397,9 @@ See also `mh-recursive-folders-flag'." | |||
| 396 | (repeat :tag "Choose Folders" (string :tag "Folder"))) | 397 | (repeat :tag "Choose Folders" (string :tag "Folder"))) |
| 397 | :group 'mh-folder) | 398 | :group 'mh-folder) |
| 398 | 399 | ||
| 399 | (defcustom mh-index-ticked-messages-folders t | 400 | (defcustom mh-ticked-messages-folders t |
| 400 | "Folders searched for `mh-tick-seq'. | 401 | "Folders searched for `mh-tick-seq'. |
| 402 | |||
| 401 | Set this option to \"Inbox\" to search the \"+inbox\" folder or \"All\" to | 403 | Set this option to \"Inbox\" to search the \"+inbox\" folder or \"All\" to |
| 402 | search all of the top level folders. Otherwise, list the folders that should | 404 | search all of the top level folders. Otherwise, list the folders that should |
| 403 | be searched with the \"Choose Folders\" menu item. | 405 | be searched with the \"Choose Folders\" menu item. |
diff --git a/lisp/mh-e/mh-index.el b/lisp/mh-e/mh-index.el index 3fef04418f5..6b429773945 100644 --- a/lisp/mh-e/mh-index.el +++ b/lisp/mh-e/mh-index.el | |||
| @@ -1287,12 +1287,12 @@ then the folders are searched recursively. All parameters ARGS are ignored." | |||
| 1287 | (defun mh-index-sequenced-messages (folders sequence) | 1287 | (defun mh-index-sequenced-messages (folders sequence) |
| 1288 | "Display messages from FOLDERS in SEQUENCE. | 1288 | "Display messages from FOLDERS in SEQUENCE. |
| 1289 | All messages in the sequence you provide from the folders in | 1289 | All messages in the sequence you provide from the folders in |
| 1290 | `mh-index-new-messages-folders' are listed. With a prefix argument, enter a | 1290 | `mh-new-messages-folders' are listed. With a prefix argument, enter a |
| 1291 | space-separated list of folders, or nothing to search all folders." | 1291 | space-separated list of folders, or nothing to search all folders." |
| 1292 | (interactive | 1292 | (interactive |
| 1293 | (list (if current-prefix-arg | 1293 | (list (if current-prefix-arg |
| 1294 | (split-string (read-string "Search folder(s): [all] ")) | 1294 | (split-string (read-string "Search folder(s) (default all): ")) |
| 1295 | mh-index-new-messages-folders) | 1295 | mh-new-messages-folders) |
| 1296 | (mh-read-seq-default "Search" nil))) | 1296 | (mh-read-seq-default "Search" nil))) |
| 1297 | (unless sequence (setq sequence mh-unseen-seq)) | 1297 | (unless sequence (setq sequence mh-unseen-seq)) |
| 1298 | (let* ((mh-flists-search-folders folders) | 1298 | (let* ((mh-flists-search-folders folders) |
| @@ -1330,27 +1330,33 @@ space-separated list of folders, or nothing to search all folders." | |||
| 1330 | ;;;###mh-autoload | 1330 | ;;;###mh-autoload |
| 1331 | (defun mh-index-new-messages (folders) | 1331 | (defun mh-index-new-messages (folders) |
| 1332 | "Display unseen messages. | 1332 | "Display unseen messages. |
| 1333 | |||
| 1333 | If you use a program such as `procmail' to use `rcvstore' to file your | 1334 | If you use a program such as `procmail' to use `rcvstore' to file your |
| 1334 | incoming mail automatically, you can display new, unseen, messages using this | 1335 | incoming mail automatically, you can display new, unseen, messages using this |
| 1335 | command. All messages in the `unseen' sequence from the folders in | 1336 | command. All messages in the `unseen' sequence from the folders in |
| 1336 | `mh-index-new-messages-folders' are listed. With a prefix argument, enter a | 1337 | `mh-new-messages-folders' are listed. |
| 1337 | space-separated list of FOLDERS, or nothing to search all folders." | 1338 | |
| 1339 | With a prefix argument, enter a space-separated list of FOLDERS, or nothing to | ||
| 1340 | search all folders." | ||
| 1338 | (interactive | 1341 | (interactive |
| 1339 | (list (if current-prefix-arg | 1342 | (list (if current-prefix-arg |
| 1340 | (split-string (read-string "Search folder(s): [all] ")) | 1343 | (split-string (read-string "Search folder(s) (default all): ")) |
| 1341 | mh-index-new-messages-folders))) | 1344 | mh-new-messages-folders))) |
| 1342 | (mh-index-sequenced-messages folders mh-unseen-seq)) | 1345 | (mh-index-sequenced-messages folders mh-unseen-seq)) |
| 1343 | 1346 | ||
| 1344 | ;;;###mh-autoload | 1347 | ;;;###mh-autoload |
| 1345 | (defun mh-index-ticked-messages (folders) | 1348 | (defun mh-index-ticked-messages (folders) |
| 1346 | "Display ticked messages. | 1349 | "Display ticked messages. |
| 1347 | All messages in `mh-tick-seq' from the folders in | 1350 | |
| 1348 | `mh-index-ticked-messages-folders' are listed. With a prefix argument, enter a | 1351 | All messages in `mh-tick-seq' from the folders in `mh-ticked-messages-folders' |
| 1349 | space-separated list of FOLDERS, or nothing to search all folders." | 1352 | are listed. |
| 1353 | |||
| 1354 | With a prefix argument, enter a space-separated list of FOLDERS, or nothing to | ||
| 1355 | search all folders." | ||
| 1350 | (interactive | 1356 | (interactive |
| 1351 | (list (if current-prefix-arg | 1357 | (list (if current-prefix-arg |
| 1352 | (split-string (read-string "Search folder(s): [all] ")) | 1358 | (split-string (read-string "Search folder(s) (default all): ")) |
| 1353 | mh-index-ticked-messages-folders))) | 1359 | mh-ticked-messages-folders))) |
| 1354 | (mh-index-sequenced-messages folders mh-tick-seq)) | 1360 | (mh-index-sequenced-messages folders mh-tick-seq)) |
| 1355 | 1361 | ||
| 1356 | 1362 | ||