aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tutorial.el
diff options
context:
space:
mode:
authorMiles Bader2007-10-19 00:00:21 +0000
committerMiles Bader2007-10-19 00:00:21 +0000
commit9c8020a8df03dc67a56d7df15664dcf7ace54bf0 (patch)
tree09b0646addff3c39f9e96ba89c04bdcc038a87a7 /lisp/tutorial.el
parentdfc3268dfa133a2e0a677f1af7c1ee548eae065d (diff)
parentbd3164743080f3eb5fc316aca7cc5322ca58fe33 (diff)
downloademacs-9c8020a8df03dc67a56d7df15664dcf7ace54bf0.tar.gz
emacs-9c8020a8df03dc67a56d7df15664dcf7ace54bf0.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 890-898) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 122-128) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 257-258) - Merge from emacs--rel--22 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-270
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