aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mh-e/mh-index.el
diff options
context:
space:
mode:
authorBill Wohler <[email protected]>2005-12-05 00:52:57 +0000
committerBill Wohler <[email protected]>2005-12-05 00:52:57 +0000
commita8a4781413622571bb3073e5ac219f153c637339 (patch)
tree40092a1aeb3f2b06c9ace3b20ff30529c22c0cab /lisp/mh-e/mh-index.el
parent2be362c2d561922b4c6603630165d8ef5e30a894 (diff)
* mh-customize.el (mh-new-messages-folders): Rename from
mh-index-new-messages-folders. (mh-ticked-messages-folders): Rename from mh-index-ticked-messages-folders. * mh-index.el (mh-index-sequenced-messages) (mh-index-new-messages): Ditto.
Diffstat (limited to 'lisp/mh-e/mh-index.el')
-rw-r--r--lisp/mh-e/mh-index.el30
1 files changed, 18 insertions, 12 deletions
diff --git a/lisp/mh-e/mh-index.el b/lisp/mh-e/mh-index.el
index 3fef04418f..6b42977394 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."
(defun mh-index-sequenced-messages (folders sequence)
"Display messages from FOLDERS in SEQUENCE.
All messages in the sequence you provide from the folders in
-`mh-index-new-messages-folders' are listed. With a prefix argument, enter a
+`mh-new-messages-folders' are listed. With a prefix argument, enter a
space-separated list of folders, or nothing to search all folders."
(interactive
(list (if current-prefix-arg
- (split-string (read-string "Search folder(s): [all] "))
- mh-index-new-messages-folders)
+ (split-string (read-string "Search folder(s) (default all): "))
+ mh-new-messages-folders)
(mh-read-seq-default "Search" nil)))
(unless sequence (setq sequence mh-unseen-seq))
(let* ((mh-flists-search-folders folders)
@@ -1330,27 +1330,33 @@ space-separated list of folders, or nothing to search all folders."
;;;###mh-autoload
(defun mh-index-new-messages (folders)
"Display unseen messages.
+
If you use a program such as `procmail' to use `rcvstore' to file your
incoming mail automatically, you can display new, unseen, messages using this
command. All messages in the `unseen' sequence from the folders in
-`mh-index-new-messages-folders' are listed. With a prefix argument, enter a
-space-separated list of FOLDERS, or nothing to search all folders."
+`mh-new-messages-folders' are listed.
+
+With a prefix argument, enter a space-separated list of FOLDERS, or nothing to
+search all folders."
(interactive
(list (if current-prefix-arg
- (split-string (read-string "Search folder(s): [all] "))
- mh-index-new-messages-folders)))
+ (split-string (read-string "Search folder(s) (default all): "))
+ mh-new-messages-folders)))
(mh-index-sequenced-messages folders mh-unseen-seq))
;;;###mh-autoload
(defun mh-index-ticked-messages (folders)
"Display ticked messages.
-All messages in `mh-tick-seq' from the folders in
-`mh-index-ticked-messages-folders' are listed. With a prefix argument, enter a
-space-separated list of FOLDERS, or nothing to search all folders."
+
+All messages in `mh-tick-seq' from the folders in `mh-ticked-messages-folders'
+are listed.
+
+With a prefix argument, enter a space-separated list of FOLDERS, or nothing to
+search all folders."
(interactive
(list (if current-prefix-arg
- (split-string (read-string "Search folder(s): [all] "))
- mh-index-ticked-messages-folders)))
+ (split-string (read-string "Search folder(s) (default all): "))
+ mh-ticked-messages-folders)))
(mh-index-sequenced-messages folders mh-tick-seq))