diff options
| author | Stefan Monnier | 2000-08-16 21:05:37 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-08-16 21:05:37 +0000 |
| commit | c0df1972b22ef1521ee8f25e33bfc7dc7ab1ad78 (patch) | |
| tree | 2cb3ae72b30f167b0e79c36c195545d5f02cabf7 /lisp/mail | |
| parent | 7382bcae29e08faa99ef275d83cd4cb31aace60a (diff) | |
| download | emacs-c0df1972b22ef1521ee8f25e33bfc7dc7ab1ad78.tar.gz emacs-c0df1972b22ef1521ee8f25e33bfc7dc7ab1ad78.zip | |
Don't quote lambda.
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/mailabbrev.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index 54967bc7b8a..6c08d5ca411 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el | |||
| @@ -110,7 +110,7 @@ | |||
| 110 | ;; | 110 | ;; |
| 111 | ;; (add-hook | 111 | ;; (add-hook |
| 112 | ;; 'mail-setup-hook | 112 | ;; 'mail-setup-hook |
| 113 | ;; '(lambda () | 113 | ;; (lambda () |
| 114 | ;; (substitute-key-definition 'next-line 'mail-abbrev-next-line | 114 | ;; (substitute-key-definition 'next-line 'mail-abbrev-next-line |
| 115 | ;; mail-mode-map global-map) | 115 | ;; mail-mode-map global-map) |
| 116 | ;; (substitute-key-definition 'end-of-buffer 'mail-abbrev-end-of-buffer | 116 | ;; (substitute-key-definition 'end-of-buffer 'mail-abbrev-end-of-buffer |
| @@ -139,9 +139,9 @@ | |||
| 139 | :type 'boolean | 139 | :type 'boolean |
| 140 | :group 'mail-abbrev | 140 | :group 'mail-abbrev |
| 141 | :require 'mailabbrev | 141 | :require 'mailabbrev |
| 142 | :set '(lambda (symbol value) | 142 | :set (lambda (symbol value) |
| 143 | (setq mail-abbrevs-mode value) | 143 | (setq mail-abbrevs-mode value) |
| 144 | (if value (mail-abbrevs-enable) (mail-abbrevs-disable))) | 144 | (if value (mail-abbrevs-enable) (mail-abbrevs-disable))) |
| 145 | :initialize 'custom-initialize-default | 145 | :initialize 'custom-initialize-default |
| 146 | :version "20.3") | 146 | :version "20.3") |
| 147 | 147 | ||