diff man/sending.texi @ 34151:33df9c2e70bf

Don't quote lambdas.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 03 Dec 2000 22:11:57 +0000
parents 29218b634d62
children 962646fc3a58
line wrap: on
line diff
--- a/man/sending.texi	Sun Dec 03 21:41:06 2000 +0000
+++ b/man/sending.texi	Sun Dec 03 22:11:57 2000 +0000
@@ -350,13 +350,13 @@
 
 @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