diff options
| author | Richard M. Stallman | 1998-04-30 06:27:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-04-30 06:27:58 +0000 |
| commit | 30eaaa34b1f7c5856a7da3a25db6d3b4a9f7b158 (patch) | |
| tree | f2f50a54a370eeba78d08775c779db57a7b0641d | |
| parent | 13aa1cde7f1b094026aa254fda2bffe819dd8ff9 (diff) | |
| download | emacs-30eaaa34b1f7c5856a7da3a25db6d3b4a9f7b158.tar.gz emacs-30eaaa34b1f7c5856a7da3a25db6d3b4a9f7b158.zip | |
(expand-mail-aliases): Doc fix.
(expand-mail-aliases, mail-complete): Use mail-header-end.
| -rw-r--r-- | lisp/mail/mailalias.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/mail/mailalias.el b/lisp/mail/mailalias.el index 5916329f68a..176bfd80163 100644 --- a/lisp/mail/mailalias.el +++ b/lisp/mail/mailalias.el | |||
| @@ -161,7 +161,7 @@ When t this still needs to be initialized.") | |||
| 161 | ;;;###autoload | 161 | ;;;###autoload |
| 162 | (defun expand-mail-aliases (beg end &optional exclude) | 162 | (defun expand-mail-aliases (beg end &optional exclude) |
| 163 | "Expand all mail aliases in suitable header fields found between BEG and END. | 163 | "Expand all mail aliases in suitable header fields found between BEG and END. |
| 164 | If interactive, expand in header fields before `mail-header-separator'. | 164 | If interactive, expand in header fields. |
| 165 | Suitable header fields are `To', `From', `CC' and `BCC', `Reply-to', and | 165 | Suitable header fields are `To', `From', `CC' and `BCC', `Reply-to', and |
| 166 | their `Resent-' variants. | 166 | their `Resent-' variants. |
| 167 | 167 | ||
| @@ -170,7 +170,7 @@ removed from alias expansions." | |||
| 170 | (interactive | 170 | (interactive |
| 171 | (save-excursion | 171 | (save-excursion |
| 172 | (list (goto-char (point-min)) | 172 | (list (goto-char (point-min)) |
| 173 | (search-forward (concat "\n" mail-header-separator "\n"))))) | 173 | (mail-header-end)))) |
| 174 | (sendmail-sync-aliases) | 174 | (sendmail-sync-aliases) |
| 175 | (when (eq mail-aliases t) | 175 | (when (eq mail-aliases t) |
| 176 | (setq mail-aliases nil) | 176 | (setq mail-aliases nil) |
| @@ -375,9 +375,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any." | |||
| 375 | (if (file-exists-p mail-personal-alias-file) | 375 | (if (file-exists-p mail-personal-alias-file) |
| 376 | (build-mail-aliases)))) | 376 | (build-mail-aliases)))) |
| 377 | (let ((list mail-complete-alist)) | 377 | (let ((list mail-complete-alist)) |
| 378 | (if (and (save-excursion (search-forward | 378 | (if (and (> 0 (mail-header-end)) |
| 379 | (concat "\n" mail-header-separator "\n") | ||
| 380 | nil t)) | ||
| 381 | (save-excursion | 379 | (save-excursion |
| 382 | (if (re-search-backward "^[^\t]" nil t) | 380 | (if (re-search-backward "^[^\t]" nil t) |
| 383 | (while list | 381 | (while list |