diff options
| author | Eli Zaretskii | 2014-04-26 10:46:18 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-04-26 10:46:18 +0300 |
| commit | 5d46972532b89f90bfde68953cc95889851ee005 (patch) | |
| tree | a71fbf595d881228c6df427464b48687a9562174 | |
| parent | 7ece6d40142cad22fe342ae522e24c9b8b5e75a3 (diff) | |
| download | emacs-5d46972532b89f90bfde68953cc95889851ee005.tar.gz emacs-5d46972532b89f90bfde68953cc95889851ee005.zip | |
Fix bug #17308 with inaccurate description of mail signature handling.
doc/emacs/sending.texi (Mail Signature): Document signature variables used
by Message mode.
| -rw-r--r-- | doc/emacs/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/emacs/sending.texi | 28 |
2 files changed, 22 insertions, 11 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 12037aae275..1e002127be6 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-04-26 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * sending.texi (Mail Signature): Document signature variables used | ||
| 4 | by Message mode. (Bug#17308) | ||
| 5 | |||
| 1 | 2014-04-21 Eli Zaretskii <eliz@gnu.org> | 6 | 2014-04-21 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * buffers.texi (Uniquify): Clarify the default uniquification. | 8 | * buffers.texi (Uniquify): Clarify the default uniquification. |
diff --git a/doc/emacs/sending.texi b/doc/emacs/sending.texi index 95f3c6b661b..02b38cc6748 100644 --- a/doc/emacs/sending.texi +++ b/doc/emacs/sending.texi | |||
| @@ -592,31 +592,37 @@ are inserted. | |||
| 592 | @section Mail Signature | 592 | @section Mail Signature |
| 593 | 593 | ||
| 594 | @cindex mail signature | 594 | @cindex mail signature |
| 595 | @vindex mail-signature-file | 595 | @vindex message-signature-file |
| 596 | @vindex mail-signature | 596 | @vindex message-signature |
| 597 | You can add a standard piece of text---your @dfn{mail | 597 | You can add a standard piece of text---your @dfn{mail |
| 598 | signature}---to the end of every message. This signature may contain | 598 | signature}---to the end of every message. This signature may contain |
| 599 | information such as your telephone number or your physical location. | 599 | information such as your telephone number or your physical location. |
| 600 | The variable @code{mail-signature} determines how Emacs handles the | 600 | The variable @code{message-signature} determines how Emacs handles the |
| 601 | mail signature. | 601 | mail signature. |
| 602 | 602 | ||
| 603 | The default value of @code{mail-signature} is @code{t}; this means | 603 | The default value of @code{message-signature} is @code{t}; this |
| 604 | to look for your mail signature in the file @file{~/.signature}. If | 604 | means to look for your mail signature in the file @file{~/.signature}. |
| 605 | this file exists, its contents are automatically inserted into the end | 605 | If this file exists, its contents are automatically inserted into the |
| 606 | of the mail buffer. You can change the signature file via the | 606 | end of the mail buffer. You can change the signature file via the |
| 607 | variable @code{mail-signature-file}. | 607 | variable @code{message-signature-file}. |
| 608 | 608 | ||
| 609 | If you change @code{mail-signature} to a string, that specifies the | 609 | If you change @code{message-signature} to a string, that specifies |
| 610 | text of the signature directly. | 610 | the text of the signature directly. |
| 611 | 611 | ||
| 612 | @kindex C-c C-w @r{(Message mode)} | 612 | @kindex C-c C-w @r{(Message mode)} |
| 613 | @findex message-insert-signature | 613 | @findex message-insert-signature |
| 614 | If you change @code{mail-signature} to @code{nil}, Emacs will not | 614 | If you change @code{message-signature} to @code{nil}, Emacs will not |
| 615 | insert your mail signature automatically. You can insert your mail | 615 | insert your mail signature automatically. You can insert your mail |
| 616 | signature by typing @kbd{C-c C-w} (@code{message-insert-signature}) in | 616 | signature by typing @kbd{C-c C-w} (@code{message-insert-signature}) in |
| 617 | the mail buffer. Emacs will look for your signature in the signature | 617 | the mail buffer. Emacs will look for your signature in the signature |
| 618 | file. | 618 | file. |
| 619 | 619 | ||
| 620 | @vindex mail-signature-file | ||
| 621 | @vindex mail-signature | ||
| 622 | If you use Mail mode rather than Message mode for composing your | ||
| 623 | mail, the corresponding variables that determine how your signature is | ||
| 624 | sent are @code{mail-signature} and @code{mail-signature-file} instead. | ||
| 625 | |||
| 620 | By convention, a mail signature should be marked by a line whose | 626 | By convention, a mail signature should be marked by a line whose |
| 621 | contents are @samp{-- }. If your signature lacks this prefix, it is | 627 | contents are @samp{-- }. If your signature lacks this prefix, it is |
| 622 | added for you. The remainder of your signature should be no more than | 628 | added for you. The remainder of your signature should be no more than |