diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-05-12 16:06:07 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-05-12 16:06:07 +0000 |
commit | 7951ca5346fe01c95f5ab9dfe7c11e9c0d145f45 (patch) | |
tree | 25c6e9e6a73b9b1887c229cab7174cb209698ccd /lisp/tutorial.el | |
parent | 6a8cd7e53fc39531fe452ca20dbf3e62a851b32b (diff) | |
download | emacs-7951ca5346fe01c95f5ab9dfe7c11e9c0d145f45.tar.gz |
* tutorial.el (help-with-tutorial): Don't use text mode, since the
tutorial text assume Fundamental mode.
Diffstat (limited to 'lisp/tutorial.el')
-rw-r--r-- | lisp/tutorial.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 12e2dd81059..242d0fe3a32 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el @@ -807,7 +807,7 @@ Run the Viper tutorial? ")) ;; (Re)build the tutorial buffer if it is not ok (unless old-tut-is-ok (switch-to-buffer (get-buffer-create tut-buf-name)) - (unless old-tut-buf (text-mode)) + ;; (unless old-tut-buf (text-mode)) (unless lang (error "Variable lang is nil")) (setq tutorial--lang lang) (setq old-tut-file (file-exists-p (tutorial--saved-file))) |