diff options
| author | Chong Yidong | 2012-08-11 10:13:55 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-08-11 10:13:55 +0800 |
| commit | 5725bd2cc0e691dadc31bd958f210b1bbcf17c49 (patch) | |
| tree | a8faec22f21eff83d918076adcc9c8c49c4cc820 /lisp/tutorial.el | |
| parent | 5723992258a8025e29ba9fcae923182fb5456426 (diff) | |
| parent | 711f4590cddbc83c509c1c5e852ef4e528a39780 (diff) | |
| download | emacs-5725bd2cc0e691dadc31bd958f210b1bbcf17c49.tar.gz emacs-5725bd2cc0e691dadc31bd958f210b1bbcf17c49.zip | |
Merge from emacs-24; up to 2012-05-02T11:38:01Z!lekktu@gmail.com
Diffstat (limited to 'lisp/tutorial.el')
| -rw-r--r-- | lisp/tutorial.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index e0e2a82fab9..64879e5cfd5 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -829,7 +829,8 @@ Run the Viper tutorial? ")) | |||
| 829 | (if old-tut-file | 829 | (if old-tut-file |
| 830 | (progn | 830 | (progn |
| 831 | (insert-file-contents (tutorial--saved-file)) | 831 | (insert-file-contents (tutorial--saved-file)) |
| 832 | (let ((enable-local-variables :safe)) | 832 | (let ((enable-local-variables :safe) |
| 833 | (enable-local-eval nil)) | ||
| 833 | (hack-local-variables)) | 834 | (hack-local-variables)) |
| 834 | ;; FIXME? What we actually want is to ignore dir-locals (?). | 835 | ;; FIXME? What we actually want is to ignore dir-locals (?). |
| 835 | (setq buffer-read-only nil) ; bug#11118 | 836 | (setq buffer-read-only nil) ; bug#11118 |
| @@ -848,7 +849,8 @@ Run the Viper tutorial? ")) | |||
| 848 | (goto-char tutorial--point-before-chkeys) | 849 | (goto-char tutorial--point-before-chkeys) |
| 849 | (setq tutorial--point-before-chkeys (point-marker))) | 850 | (setq tutorial--point-before-chkeys (point-marker))) |
| 850 | (insert-file-contents (expand-file-name filename tutorial-directory)) | 851 | (insert-file-contents (expand-file-name filename tutorial-directory)) |
| 851 | (let ((enable-local-variables :safe)) | 852 | (let ((enable-local-variables :safe) |
| 853 | (enable-local-eval nil)) | ||
| 852 | (hack-local-variables)) | 854 | (hack-local-variables)) |
| 853 | ;; FIXME? What we actually want is to ignore dir-locals (?). | 855 | ;; FIXME? What we actually want is to ignore dir-locals (?). |
| 854 | (setq buffer-read-only nil) ; bug#11118 | 856 | (setq buffer-read-only nil) ; bug#11118 |