Mercurial > emacs
comparison man/sending.texi @ 71593:4d628cade603
fix overfull/underfull boxes
author | Karl Berry <karl@gnu.org> |
---|---|
date | Mon, 03 Jul 2006 18:17:21 +0000 |
parents | 8d2ebe6de93b |
children | 3d45362f1d38 138ce2701550 |
comparison
equal
deleted
inserted
replaced
71592:78e1e4fcd148 | 71593:4d628cade603 |
---|---|
299 @example | 299 @example |
300 alias chief-torturer "George W. Bush <bush@@whitehouse.gov>" | 300 alias chief-torturer "George W. Bush <bush@@whitehouse.gov>" |
301 @end example | 301 @end example |
302 | 302 |
303 @noindent | 303 @noindent |
304 is correct. Emacs will insert the address as @samp{"George W. Bush" | 304 is correct in @samp{.mailrc}. Emacs will insert the address as |
305 <bush@@whitehouse.gov>}. | 305 @samp{"George W. Bush" <bush@@whitehouse.gov>}. |
306 | 306 |
307 Emacs also recognizes ``include'' commands in @samp{.mailrc} files. | 307 Emacs also recognizes ``include'' commands in @samp{.mailrc} files. |
308 They look like this: | 308 They look like this: |
309 | 309 |
310 @example | 310 @example |
375 afterward. However, you can rebind @kbd{C-n} and @kbd{M->} to cause | 375 afterward. However, you can rebind @kbd{C-n} and @kbd{M->} to cause |
376 expansion as well. Here's how to do that: | 376 expansion as well. Here's how to do that: |
377 | 377 |
378 @smallexample | 378 @smallexample |
379 (add-hook 'mail-mode-hook | 379 (add-hook 'mail-mode-hook |
380 (lambda () | 380 (lambda () |
381 (define-key | 381 (define-key |
382 mail-mode-map [remap next-line] 'mail-abbrev-next-line) | 382 mail-mode-map [remap next-line] 'mail-abbrev-next-line) |
383 (define-key | 383 (define-key |
384 mail-mode-map [remap end-of-buffer] 'mail-abbrev-end-of-buffer))) | 384 mail-mode-map [remap end-of-buffer] 'mail-abbrev-end-of-buffer))) |
385 @end smallexample | 385 @end smallexample |
386 | 386 |
387 @node Mail Mode | 387 @node Mail Mode |
388 @section Mail Mode | 388 @section Mail Mode |
389 @cindex Mail mode | 389 @cindex Mail mode |