diff options
| author | Chong Yidong | 2009-05-12 16:06:07 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-05-12 16:06:07 +0000 |
| commit | 7951ca5346fe01c95f5ab9dfe7c11e9c0d145f45 (patch) | |
| tree | 25c6e9e6a73b9b1887c229cab7174cb209698ccd | |
| parent | 6a8cd7e53fc39531fe452ca20dbf3e62a851b32b (diff) | |
| download | emacs-7951ca5346fe01c95f5ab9dfe7c11e9c0d145f45.tar.gz emacs-7951ca5346fe01c95f5ab9dfe7c11e9c0d145f45.zip | |
* tutorial.el (help-with-tutorial): Don't use text mode, since the
tutorial text assume Fundamental mode.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/tutorial.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 55f9f16e014..2e8ec2b913b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-05-12 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * tutorial.el (help-with-tutorial): Don't use text mode, since the | ||
| 4 | tutorial text assume Fundamental mode. | ||
| 5 | |||
| 1 | 2009-05-11 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2009-05-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * simple.el (completion-setup-function): | 8 | * simple.el (completion-setup-function): |
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? ")) | |||
| 807 | ;; (Re)build the tutorial buffer if it is not ok | 807 | ;; (Re)build the tutorial buffer if it is not ok |
| 808 | (unless old-tut-is-ok | 808 | (unless old-tut-is-ok |
| 809 | (switch-to-buffer (get-buffer-create tut-buf-name)) | 809 | (switch-to-buffer (get-buffer-create tut-buf-name)) |
| 810 | (unless old-tut-buf (text-mode)) | 810 | ;; (unless old-tut-buf (text-mode)) |
| 811 | (unless lang (error "Variable lang is nil")) | 811 | (unless lang (error "Variable lang is nil")) |
| 812 | (setq tutorial--lang lang) | 812 | (setq tutorial--lang lang) |
| 813 | (setq old-tut-file (file-exists-p (tutorial--saved-file))) | 813 | (setq old-tut-file (file-exists-p (tutorial--saved-file))) |