summaryrefslogtreecommitdiff
path: root/man/sending.texi
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-12-03 22:11:57 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-12-03 22:11:57 +0000
commit43aef553f2f85954bc73d1751c7521834d8b23d6 (patch)
tree89ae898adcac8e480e03f8fd1e9e06ac7275ee82 /man/sending.texi
parent8b262a654924a43af89bf89bdbc478349085f213 (diff)
downloademacs-43aef553f2f85954bc73d1751c7521834d8b23d6.tar.gz
Don't quote lambdas.
Diffstat (limited to 'man/sending.texi')
-rw-r--r--man/sending.texi14
1 files changed, 7 insertions, 7 deletions
diff --git a/man/sending.texi b/man/sending.texi
index a8e9be8f745..faf9d8eaff8 100644
--- a/man/sending.texi
+++ b/man/sending.texi
@@ -350,13 +350,13 @@ expansion as well. Here's how to do that:
@smallexample
(add-hook 'mail-setup-hook
- '(lambda ()
- (substitute-key-definition
- 'next-line 'mail-abbrev-next-line
- mail-mode-map global-map)
- (substitute-key-definition
- 'end-of-buffer 'mail-abbrev-end-of-buffer
- mail-mode-map global-map)))
+ (lambda ()
+ (substitute-key-definition
+ 'next-line 'mail-abbrev-next-line
+ mail-mode-map global-map)
+ (substitute-key-definition
+ 'end-of-buffer 'mail-abbrev-end-of-buffer
+ mail-mode-map global-map)))
@end smallexample
@node Mail Mode