aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-09-06 02:50:14 +0000
committerGlenn Morris2008-09-06 02:50:14 +0000
commit59988cefadf3ead364f9597de83a369a35e2393e (patch)
treeeac6595dbe18cc4b4adc755a557e0a6e3864994d
parentc2e1d7bc9209be96dbc69908bac4e0a5f60b9789 (diff)
downloademacs-59988cefadf3ead364f9597de83a369a35e2393e.tar.gz
emacs-59988cefadf3ead364f9597de83a369a35e2393e.zip
(pmail-dont-reply-to, pmail-desc-get-marker-end)
(pmail-desc-get-marker-start): Remove declarations of undefined functions. (pmail-select-correspondent): Use rmail-dont-reply-to from mail-utils rather than non-existent pmail-dont-reply-to.
-rw-r--r--lisp/mail/pmailsort.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/pmailsort.el b/lisp/mail/pmailsort.el
index 91d93bc12a7..4be67b90eab 100644
--- a/lisp/mail/pmailsort.el
+++ b/lisp/mail/pmailsort.el
@@ -33,9 +33,8 @@
33 33
34(autoload 'timezone-make-date-sortable "timezone") 34(autoload 'timezone-make-date-sortable "timezone")
35 35
36(declare-function pmail-dont-reply-to "mail-utils" (destinations)) 36;(declare-function pmail-desc-get-marker-end "pmailsort" (msgnum))
37(declare-function pmail-desc-get-marker-end "pmailsort" (msgnum)) 37;(declare-function pmail-desc-get-marker-start "pmailsort" (msgnum))
38(declare-function pmail-desc-get-marker-start "pmailsort" (msgnum))
39(declare-function pmail-update-summary "pmailsum" (&rest ignore)) 38(declare-function pmail-update-summary "pmailsum" (&rest ignore))
40 39
41;; Sorting messages in Pmail buffer 40;; Sorting messages in Pmail buffer
@@ -109,7 +108,8 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
109 (let ((ans "")) 108 (let ((ans ""))
110 (while (and fields (string= ans "")) 109 (while (and fields (string= ans ""))
111 (setq ans 110 (setq ans
112 (pmail-dont-reply-to 111 ;; NB despite the name, this lives in mail-utils.el.
112 (rmail-dont-reply-to
113 (mail-strip-quoted-names 113 (mail-strip-quoted-names
114 (or (pmail-fetch-field msg (car fields)) "")))) 114 (or (pmail-fetch-field msg (car fields)) ""))))
115 (setq fields (cdr fields))) 115 (setq fields (cdr fields)))