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 bfa7f42d8ab..a7f239d7499 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -656,7 +656,8 @@ position where the display of changed bindings was inserted." | |||
| 656 | ;; This runs in a hook so protect it: | 656 | ;; This runs in a hook so protect it: |
| 657 | (condition-case err | 657 | (condition-case err |
| 658 | (if (y-or-n-p "Save your position in the tutorial? ") | 658 | (if (y-or-n-p "Save your position in the tutorial? ") |
| 659 | (tutorial--save-tutorial-to (tutorial--saved-file))) | 659 | (tutorial--save-tutorial-to (tutorial--saved-file)) |
| 660 | (message "Tutorial position not saved")) | ||
| 660 | (error (message "Error saving tutorial state: %s" | 661 | (error (message "Error saving tutorial state: %s" |
| 661 | (error-message-string err))))) | 662 | (error-message-string err))))) |
| 662 | 663 | ||