aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tutorial.el
diff options
context:
space:
mode:
authorMiles Bader2007-07-24 01:23:55 +0000
committerMiles Bader2007-07-24 01:23:55 +0000
commitd918f936d5bfc7e126cc3b1bbf6ce80836c8d6f1 (patch)
treec2dad763df03a5380928485043f9999c7a3533a6 /lisp/tutorial.el
parenta1ef75fc233b19951f65bd2a177751751f9676a3 (diff)
parent1e8995158740b15936887264a3d7183beb5c51d9 (diff)
downloademacs-d918f936d5bfc7e126cc3b1bbf6ce80836c8d6f1.tar.gz
emacs-d918f936d5bfc7e126cc3b1bbf6ce80836c8d6f1.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 816-823) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 59-69) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 237-238) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-235
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 7c97579ab6e..6a52d751c5b 100644
--- a/lisp/tutorial.el
+++ b/lisp/tutorial.el
@@ -431,11 +431,17 @@ where
431 (def-fun (nth 0 kdf)) 431 (def-fun (nth 0 kdf))
432 (def-fun-txt (format "%s" def-fun)) 432 (def-fun-txt (format "%s" def-fun))
433 (rem-fun (command-remapping def-fun)) 433 (rem-fun (command-remapping def-fun))
434 ;; Handle prefix definitions specially
435 ;; so that a mode that rebinds some subcommands
436 ;; won't make it appear that the whole prefix is gone.
434 (key-fun (if (eq def-fun 'ESC-prefix) 437 (key-fun (if (eq def-fun 'ESC-prefix)
435 (lookup-key global-map [27]) 438 (lookup-key global-map [27])
436 (key-binding key))) 439 (if (eq def-fun 'Control-X-prefix)
440 (lookup-key global-map [24])
441 (key-binding key))))
437 (where (where-is-internal (if rem-fun rem-fun def-fun))) 442 (where (where-is-internal (if rem-fun rem-fun def-fun)))
438 cwhere) 443 cwhere)
444
439 (if where 445 (if where
440 (progn 446 (progn
441 (setq cwhere (car where) 447 (setq cwhere (car where)