diff options
author | Karl Berry <karl@gnu.org> | 2006-07-03 18:17:21 +0000 |
---|---|---|
committer | Karl Berry <karl@gnu.org> | 2006-07-03 18:17:21 +0000 |
commit | 444246ca3894cda71f5ce221bd6d7f2b0ae22b02 (patch) | |
tree | cec3b7b511ad969a942cb4ccf57858945a01f397 /man/sending.texi | |
parent | 33cd9ed842f61a8769458b6f1aba6193f9efc52e (diff) | |
download | emacs-444246ca3894cda71f5ce221bd6d7f2b0ae22b02.tar.gz |
fix overfull/underfull boxes
Diffstat (limited to 'man/sending.texi')
-rw-r--r-- | man/sending.texi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/man/sending.texi b/man/sending.texi index df2ccd962a0..41b26cde430 100644 --- a/man/sending.texi +++ b/man/sending.texi @@ -301,8 +301,8 @@ alias chief-torturer "George W. Bush <bush@@whitehouse.gov>" @end example @noindent -is correct. Emacs will insert the address as @samp{"George W. Bush" -<bush@@whitehouse.gov>}. +is correct in @samp{.mailrc}. Emacs will insert the address as +@samp{"George W. Bush" <bush@@whitehouse.gov>}. Emacs also recognizes ``include'' commands in @samp{.mailrc} files. They look like this: @@ -377,11 +377,11 @@ expansion as well. Here's how to do that: @smallexample (add-hook 'mail-mode-hook - (lambda () - (define-key - mail-mode-map [remap next-line] 'mail-abbrev-next-line) - (define-key - mail-mode-map [remap end-of-buffer] 'mail-abbrev-end-of-buffer))) + (lambda () + (define-key + mail-mode-map [remap next-line] 'mail-abbrev-next-line) + (define-key + mail-mode-map [remap end-of-buffer] 'mail-abbrev-end-of-buffer))) @end smallexample @node Mail Mode |