diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-08-16 20:34:25 +0000 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-08-16 20:34:25 +0000 |
| commit | 7e86942c8a01172bbe30a401c7a7555753e683c4 (patch) | |
| tree | e2c95379b03e746dcc25aba30a00064c60d0a8d2 | |
| parent | 399ede13719f9260aad306af861ba14d245e3b78 (diff) | |
| download | emacs-7e86942c8a01172bbe30a401c7a7555753e683c4.tar.gz | |
(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." (make-local-hook 'change-major-mode-hook) ;; Turn off this mode if we change major modes. (add-hook 'change-major-mode-hook - '(lambda () (outline-minor-mode -1)) + (lambda () (outline-minor-mode -1)) nil t) (make-local-variable 'line-move-ignore-invisible) (setq line-move-ignore-invisible t) |
