diff options
Diffstat (limited to 'lisp/tutorial.el')
| -rw-r--r-- | lisp/tutorial.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 26fb0e503f7..4913da63f5c 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -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 | ||