summaryrefslogtreecommitdiff
path: root/lisp/tutorial.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-07-15 18:40:19 +0000
committerRichard M. Stallman <rms@gnu.org>2007-07-15 18:40:19 +0000
commit0e01e4afb99f8d278de0fea3270649e7ab46d652 (patch)
treed1ed2e19e61645b56dce4ead2d38716e835244b6 /lisp/tutorial.el
parentf9b9868496ff25dabafcd3c35b6bb5600dbdd2fd (diff)
downloademacs-0e01e4afb99f8d278de0fea3270649e7ab46d652.tar.gz
(tutorial--find-changed-keys): Handle C-x specially like ESC.
Diffstat (limited to 'lisp/tutorial.el')
-rw-r--r--lisp/tutorial.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el
index 4856d178056..feaabbbb19e 100644
--- a/lisp/tutorial.el
+++ b/lisp/tutorial.el
@@ -431,10 +431,16 @@ where
(def-fun (nth 0 kdf))
(def-fun-txt (format "%s" def-fun))
(rem-fun (command-remapping def-fun))
+ ;; Handle prefix definitions specially
+ ;; so that a mode that rebinds some subcommands
+ ;; won't make it appear that the whole prefix is gone.
(key-fun (if (eq def-fun 'ESC-prefix)
(lookup-key global-map [27])
- (key-binding key)))
+ (if (eq def-fun 'Control-X-prefix)
+ (lookup-key global-map [24])
+ (key-binding key))))
(where (where-is-internal (if rem-fun rem-fun def-fun))))
+
(if where
(progn
(setq where (key-description (car where)))