aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-12-10 08:25:58 +0000
committerGlenn Morris2009-12-10 08:25:58 +0000
commit8c0171c0eeacb2b01468d875628039b9ad414192 (patch)
tree4eb1aed7bb7556d0cbe9a58901406a3a204863c1
parentdba372dd2832f808ff704bea8aa062518885ab5c (diff)
downloademacs-8c0171c0eeacb2b01468d875628039b9ad414192.tar.gz
emacs-8c0171c0eeacb2b01468d875628039b9ad414192.zip
(top-level): Move require 'mail-utils to start.
(expand-mail-aliases): Define for compiler.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/mail/feedmail.el9
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 91bc463f7ad..684d1bcffbb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-12-10 Glenn Morris <rgm@gnu.org> 12009-12-10 Glenn Morris <rgm@gnu.org>
2 2
3 * mail/feedmail.el (top-level): Move require 'mail-utils to start.
4 (expand-mail-aliases): Define for compiler.
5
3 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset): 6 * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
4 Define for compiler. 7 Define for compiler.
5 8
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el
index 5fc8b1bc5ef..77d82f6076f 100644
--- a/lisp/mail/feedmail.el
+++ b/lisp/mail/feedmail.el
@@ -286,7 +286,12 @@
286 286
287(defconst feedmail-patch-level "8") 287(defconst feedmail-patch-level "8")
288 288
289(eval-when-compile (require 'smtpmail) (require 'cl)) 289(require 'mail-utils) ; pick up mail-strip-quoted-names
290
291(eval-when-compile
292 (require 'smtpmail)
293 (require 'cl))
294
290(autoload 'mail-do-fcc "sendmail") 295(autoload 'mail-do-fcc "sendmail")
291 296
292(defgroup feedmail nil 297(defgroup feedmail nil
@@ -1950,6 +1955,7 @@ mapped to mostly alphanumerics for safety."
1950 (feedmail-rfc822-time-zone time) 1955 (feedmail-rfc822-time-zone time)
1951 ))) 1956 )))
1952 1957
1958(declare-function expand-mail-aliases "mailalias" (beg end &optional exclude))
1953 1959
1954(defun feedmail-send-it-immediately () 1960(defun feedmail-send-it-immediately ()
1955 "Handle immediate sending, including during a queue run." 1961 "Handle immediate sending, including during a queue run."
@@ -2582,7 +2588,6 @@ Resent-To:, Resent-Cc:, and Resent-Bcc:."
2582 )) 2588 ))
2583 2589
2584 2590
2585(require 'mail-utils) ; pick up mail-strip-quoted-names
2586(defun feedmail-deduce-address-list (message-buffer header-start header-end addr-regexp address-list) 2591(defun feedmail-deduce-address-list (message-buffer header-start header-end addr-regexp address-list)
2587 "Get address list with all comments and other excitement trimmed. 2592 "Get address list with all comments and other excitement trimmed.
2588Addresses are collected only from headers whose names match the fourth 2593Addresses are collected only from headers whose names match the fourth