aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tutorial.el
diff options
context:
space:
mode:
authorPaul Eggert2012-04-09 15:54:59 -0700
committerPaul Eggert2012-04-09 15:54:59 -0700
commit45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193 (patch)
tree5bc87a8b5a3c754b8eb44a612cc6c03561d6b968 /lisp/tutorial.el
parent9d6b4d53469a9ffd67bd770fabc6fe254e35c21d (diff)
parent05920a43fc18e696b464387e781e7cfdcea5b5af (diff)
downloademacs-45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193.tar.gz
emacs-45e9f7da84c1bd3fc0d36d05c5708ed3b2d3a193.zip
Merge from trunk.
Diffstat (limited to 'lisp/tutorial.el')
-rw-r--r--lisp/tutorial.el4
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