diff options
| author | Paul Eggert | 2012-04-09 15:54:59 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-04-09 15:54:59 -0700 |
| commit | 45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193 (patch) | |
| tree | 5bc87a8b5a3c754b8eb44a612cc6c03561d6b968 /lisp/tutorial.el | |
| parent | 9d6b4d53469a9ffd67bd770fabc6fe254e35c21d (diff) | |
| parent | 05920a43fc18e696b464387e781e7cfdcea5b5af (diff) | |
| download | emacs-45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193.tar.gz emacs-45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193.zip | |
Merge from trunk.
Diffstat (limited to 'lisp/tutorial.el')
| -rw-r--r-- | lisp/tutorial.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 80d8f287cb1..b512700f5b9 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -832,6 +832,8 @@ Run the Viper tutorial? ")) | |||
| 832 | (insert-file-contents (tutorial--saved-file)) | 832 | (insert-file-contents (tutorial--saved-file)) |
| 833 | (let ((enable-local-variables :safe)) | 833 | (let ((enable-local-variables :safe)) |
| 834 | (hack-local-variables)) | 834 | (hack-local-variables)) |
| 835 | ;; FIXME? What we actually want is to ignore dir-locals (?). | ||
| 836 | (setq buffer-read-only nil) ; bug#11118 | ||
| 835 | (goto-char (point-min)) | 837 | (goto-char (point-min)) |
| 836 | (setq old-tut-point | 838 | (setq old-tut-point |
| 837 | (string-to-number | 839 | (string-to-number |
| @@ -849,6 +851,8 @@ Run the Viper tutorial? ")) | |||
| 849 | (insert-file-contents (expand-file-name filename tutorial-directory)) | 851 | (insert-file-contents (expand-file-name filename tutorial-directory)) |
| 850 | (let ((enable-local-variables :safe)) | 852 | (let ((enable-local-variables :safe)) |
| 851 | (hack-local-variables)) | 853 | (hack-local-variables)) |
| 854 | ;; FIXME? What we actually want is to ignore dir-locals (?). | ||
| 855 | (setq buffer-read-only nil) ; bug#11118 | ||
| 852 | (forward-line) | 856 | (forward-line) |
| 853 | (setq tutorial--point-before-chkeys (point-marker))) | 857 | (setq tutorial--point-before-chkeys (point-marker))) |
| 854 | 858 | ||