From 43aef553f2f85954bc73d1751c7521834d8b23d6 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 3 Dec 2000 22:11:57 +0000 Subject: Don't quote lambdas. --- man/sending.texi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'man/sending.texi') 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 -- cgit v1.2.1