]> git.eshelyaron.com Git - emacs.git/commitdiff
(pmail-dont-reply-to, pmail-desc-get-marker-end)
authorGlenn Morris <rgm@gnu.org>
Sat, 6 Sep 2008 02:50:14 +0000 (02:50 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 6 Sep 2008 02:50:14 +0000 (02:50 +0000)
(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.

lisp/mail/pmailsort.el

index 91d93bc12a7afeb055b3ee828615f5c8dd57875c..4be67b90eab9ff4fc70b39ed13c3b1fe40eead37 100644 (file)
@@ -33,9 +33,8 @@
 
 (autoload 'timezone-make-date-sortable "timezone")
 
-(declare-function pmail-dont-reply-to "mail-utils" (destinations))
-(declare-function pmail-desc-get-marker-end "pmailsort" (msgnum))
-(declare-function pmail-desc-get-marker-start "pmailsort" (msgnum))
+;(declare-function pmail-desc-get-marker-end "pmailsort" (msgnum))
+;(declare-function pmail-desc-get-marker-start "pmailsort" (msgnum))
 (declare-function pmail-update-summary "pmailsum" (&rest ignore))
 
 ;; Sorting messages in Pmail buffer
@@ -109,7 +108,8 @@ If prefix argument REVERSE is non-nil, sort them in reverse order."
   (let ((ans ""))
     (while (and fields (string= ans ""))
       (setq ans
-           (pmail-dont-reply-to
+           ;; NB despite the name, this lives in mail-utils.el.
+           (rmail-dont-reply-to
             (mail-strip-quoted-names
              (or (pmail-fetch-field msg (car fields)) ""))))
       (setq fields (cdr fields)))