aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tutorial.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/tutorial.el')
-rw-r--r--lisp/tutorial.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el
index 26fb0e503f7..336593891ab 100644
--- a/lisp/tutorial.el
+++ b/lisp/tutorial.el
@@ -291,7 +291,7 @@ LEFT and RIGHT are the elements to compare."
291 ;; * MODE LINE 291 ;; * MODE LINE
292 (describe-mode [?\C-h ?m]) 292 (describe-mode [?\C-h ?m])
293 (set-fill-column [?\C-x ?f]) 293 (set-fill-column [?\C-x ?f])
294 (fill-paragraph-or-region [?\M-q]) 294 (fill-paragraph [?\M-q])
295 295
296 ;; * SEARCHING 296 ;; * SEARCHING
297 (isearch-forward [?\C-s]) 297 (isearch-forward [?\C-s])
@@ -665,7 +665,8 @@ position where the display of changed bindings was inserted."
665 ;; This runs in a hook so protect it: 665 ;; This runs in a hook so protect it:
666 (condition-case err 666 (condition-case err
667 (if (y-or-n-p "Save your position in the tutorial? ") 667 (if (y-or-n-p "Save your position in the tutorial? ")
668 (tutorial--save-tutorial-to (tutorial--saved-file))) 668 (tutorial--save-tutorial-to (tutorial--saved-file))
669 (message "Tutorial position not saved"))
669 (error (message "Error saving tutorial state: %s" 670 (error (message "Error saving tutorial state: %s"
670 (error-message-string err))))) 671 (error-message-string err)))))
671 672