aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mh-e/mh-seq.el
diff options
context:
space:
mode:
authorDeepak Goel <[email protected]>2009-03-13 20:28:15 +0000
committerDeepak Goel <[email protected]>2009-03-13 20:28:15 +0000
commit7c730dd6e1f4a7bd904aee53d295d8352b48b328 (patch)
tree1b87623f342ac4b515471672450569f2989c2d9c /lisp/mh-e/mh-seq.el
parent4537363ca5f2b030f14549ba25608d367ce7d2f1 (diff)
m-v: use lists to pass things around rather than values.
Diffstat (limited to 'lisp/mh-e/mh-seq.el')
-rw-r--r--lisp/mh-e/mh-seq.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/mh-e/mh-seq.el b/lisp/mh-e/mh-seq.el
index 15363505fb..dc7154adf2 100644
--- a/lisp/mh-e/mh-seq.el
+++ b/lisp/mh-e/mh-seq.el
@@ -746,9 +746,10 @@ completion is over."
"-norecurse" folder "-sequence" (symbol-name mh-unseen-seq))
(goto-char (point-min))
(multiple-value-bind (folder unseen total)
- (mh-parse-flist-output-line
- (buffer-substring (point) (mh-line-end-position)))
- (values total unseen folder))))
+ (values-list
+ (mh-parse-flist-output-line
+ (buffer-substring (point) (mh-line-end-position))))
+ (list total unseen folder))))
(defun mh-folder-size-folder (folder)
"Find size of FOLDER using \"folder\"."
@@ -759,8 +760,8 @@ completion is over."
"-norecurse" folder)
(goto-char (point-min))
(if (re-search-forward " has \\([0-9]+\\) " nil t)
- (values (string-to-number (match-string 1)) u folder)
- (values 0 u folder)))))
+ (list (string-to-number (match-string 1)) u folder)
+ (list 0 u folder)))))
;;;###mh-autoload
(defun mh-parse-flist-output-line (line &optional current-folder)
@@ -788,7 +789,7 @@ folders whose names end with a '+' character."
(when (and (equal (aref folder (1- (length folder))) ?+)
(equal current-folder folder))
(setq folder (substring folder 0 (1- (length folder)))))
- (values (format "+%s" folder) unseen total)))))))
+ (list (format "+%s" folder) unseen total)))))))
;;;###mh-autoload
(defun mh-read-folder-sequences (folder save-refiles)