summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1991-04-01 21:16:55 +0000
committerRichard M. Stallman <rms@gnu.org>1991-04-01 21:16:55 +0000
commit968464225882fe0d440b01aa6ae9e128839617a7 (patch)
treea2ad59c7d872a747f0d260e91a34d645a642999d
parentc7c0858d9faffa25a45961b4da1cff49ba3c5b6c (diff)
downloademacs-968464225882fe0d440b01aa6ae9e128839617a7.tar.gz
*** empty log message ***
-rw-r--r--lisp/mail/mailalias.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mail/mailalias.el b/lisp/mail/mailalias.el
index ef1baef4218..792514330fb 100644
--- a/lisp/mail/mailalias.el
+++ b/lisp/mail/mailalias.el
@@ -22,9 +22,9 @@
;; only if some mail aliases are defined.
(defun expand-mail-aliases (beg end &optional exclude)
"Expand all mail aliases in suitable header fields found between BEG and END.
-Suitable header fields are To, Cc and Bcc and their Resent- variants.
-Optional 2nd arg EXCLUDE may be a regular expression
-defining text to be removed from alias expansions."
+Suitable header fields are `To', `Cc' and `Bcc' and their `Resent-' variants.
+Optional second arg EXCLUDE may be a regular expression defining text to be
+removed from alias expansions."
(if (eq mail-aliases t)
(progn (setq mail-aliases nil) (build-mail-aliases)))
(goto-char beg)
@@ -89,7 +89,7 @@ defining text to be removed from alias expansions."
;; Called by mail-setup, or similar functions, only if ~/.mailrc exists.
(defun build-mail-aliases (&optional file)
- "Read mail aliases from ~/.mailrc and set mail-aliases."
+ "Read mail aliases from ~/.mailrc and set `mail-aliases'."
(setq file (expand-file-name (or file "~/.mailrc")))
(let ((buffer nil)
(obuf (current-buffer)))
@@ -131,7 +131,7 @@ defining text to be removed from alias expansions."
;; Always autoloadable in case the user wants to define aliases
;; interactively or in .emacs.
(defun define-mail-alias (name definition)
- "Define NAME as a mail-alias that translates to DEFINITION.
+ "Define NAME as a mail alias that translates to DEFINITION.
This means that sending a message to NAME will actually send to DEFINITION.
DEFINITION can be one or more mail addresses separated by commas."
(interactive "sDefine mail alias: \nsDefine %s as mail alias for: ")