diff options
| author | Stefan Monnier | 2000-08-16 20:34:25 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-08-16 20:34:25 +0000 |
| commit | 7e86942c8a01172bbe30a401c7a7555753e683c4 (patch) | |
| tree | e2c95379b03e746dcc25aba30a00064c60d0a8d2 | |
| parent | 399ede13719f9260aad306af861ba14d245e3b78 (diff) | |
| download | emacs-7e86942c8a01172bbe30a401c7a7555753e683c4.tar.gz emacs-7e86942c8a01172bbe30a401c7a7555753e683c4.zip | |
(outline-minor-mode): Don't quote lambda.
| -rw-r--r-- | lisp/textmodes/outline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/outline.el b/lisp/textmodes/outline.el index d9b43aee1d6..38a66239aa7 100644 --- a/lisp/textmodes/outline.el +++ b/lisp/textmodes/outline.el | |||
| @@ -284,7 +284,7 @@ See the command `outline-mode' for more information on this mode." | |||
| 284 | (make-local-hook 'change-major-mode-hook) | 284 | (make-local-hook 'change-major-mode-hook) |
| 285 | ;; Turn off this mode if we change major modes. | 285 | ;; Turn off this mode if we change major modes. |
| 286 | (add-hook 'change-major-mode-hook | 286 | (add-hook 'change-major-mode-hook |
| 287 | '(lambda () (outline-minor-mode -1)) | 287 | (lambda () (outline-minor-mode -1)) |
| 288 | nil t) | 288 | nil t) |
| 289 | (make-local-variable 'line-move-ignore-invisible) | 289 | (make-local-variable 'line-move-ignore-invisible) |
| 290 | (setq line-move-ignore-invisible t) | 290 | (setq line-move-ignore-invisible t) |