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, 4 insertions, 1 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el
index cf9a391e5a6..53f41c95646 100644
--- a/lisp/tutorial.el
+++ b/lisp/tutorial.el
@@ -446,7 +446,8 @@ where
446 (cond ((eq key-fun def-fun) 446 (cond ((eq key-fun def-fun)
447 ;; No rebinding, return t 447 ;; No rebinding, return t
448 t) 448 t)
449 ((eq key-fun (command-remapping def-fun)) 449 ((and key-fun
450 (eq key-fun (command-remapping def-fun)))
450 ;; Just a remapping, return t 451 ;; Just a remapping, return t
451 t) 452 t)
452 ;; cua-mode specials: 453 ;; cua-mode specials:
@@ -571,6 +572,8 @@ with some explanatory links."
571 (where (nth 3 ck)) 572 (where (nth 3 ck))
572 s1 s2 help-string) 573 s1 s2 help-string)
573 (unless (string= where "Same key") 574 (unless (string= where "Same key")
575 (when (string= where "")
576 (setq where (format "M-x %s" def-fun)))
574 (setq tutorial--point-after-chkeys (point-marker) 577 (setq tutorial--point-after-chkeys (point-marker)
575 s1 (get-lang-string tutorial--lang 'tut-chgdkey) 578 s1 (get-lang-string tutorial--lang 'tut-chgdkey)
576 s2 (get-lang-string tutorial--lang 'tut-chgdkey2) 579 s2 (get-lang-string tutorial--lang 'tut-chgdkey2)