diff options
| author | Karl Heuer | 1994-09-22 17:00:25 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-09-22 17:00:25 +0000 |
| commit | 26045a35d2013473f968529085b59a19697fbc68 (patch) | |
| tree | 2110cbda4abbf2da67857c4c4ace8fc27562edea | |
| parent | 799ac634aadd4c9279e26c5cebe52d8bebafbe21 (diff) | |
| download | emacs-26045a35d2013473f968529085b59a19697fbc68.tar.gz emacs-26045a35d2013473f968529085b59a19697fbc68.zip | |
(sendmail-synch-aliases): Renamed from sync-mail-aliases. All callers changed.
| -rw-r--r-- | lisp/mail/sendmail.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 952724892b3..86101386ee0 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -167,7 +167,7 @@ actually occur.") | |||
| 167 | (defvar mail-send-hook nil | 167 | (defvar mail-send-hook nil |
| 168 | "Normal hook run before sending mail, in Mail mode.") | 168 | "Normal hook run before sending mail, in Mail mode.") |
| 169 | 169 | ||
| 170 | (defun synch-mail-aliases () | 170 | (defun sendmail-synch-aliases () |
| 171 | (let ((modtime (nth 5 (file-attributes "~/.mailrc")))) | 171 | (let ((modtime (nth 5 (file-attributes "~/.mailrc")))) |
| 172 | (or (equal mail-alias-modtime modtime) | 172 | (or (equal mail-alias-modtime modtime) |
| 173 | (setq mail-alias-modtime modtime | 173 | (setq mail-alias-modtime modtime |
| @@ -176,7 +176,7 @@ actually occur.") | |||
| 176 | (defun mail-setup (to subject in-reply-to cc replybuffer actions) | 176 | (defun mail-setup (to subject in-reply-to cc replybuffer actions) |
| 177 | (if (eq mail-default-reply-to t) | 177 | (if (eq mail-default-reply-to t) |
| 178 | (setq mail-default-reply-to (getenv "REPLYTO"))) | 178 | (setq mail-default-reply-to (getenv "REPLYTO"))) |
| 179 | (synch-mail-aliases) | 179 | (sendmail-synch-aliases) |
| 180 | (if (eq mail-aliases t) | 180 | (if (eq mail-aliases t) |
| 181 | (progn | 181 | (progn |
| 182 | (setq mail-aliases nil) | 182 | (setq mail-aliases nil) |
| @@ -421,7 +421,7 @@ the user from the mailer." | |||
| 421 | (replace-match "\n") | 421 | (replace-match "\n") |
| 422 | (backward-char 1) | 422 | (backward-char 1) |
| 423 | (setq delimline (point-marker)) | 423 | (setq delimline (point-marker)) |
| 424 | (synch-mail-aliases) | 424 | (sendmail-synch-aliases) |
| 425 | (if mail-aliases | 425 | (if mail-aliases |
| 426 | (expand-mail-aliases (point-min) delimline)) | 426 | (expand-mail-aliases (point-min) delimline)) |
| 427 | (goto-char (point-min)) | 427 | (goto-char (point-min)) |