aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2006-02-10 16:46:43 +0000
committerJuanma Barranquero2006-02-10 16:46:43 +0000
commit1c51d057c46809c8ea955c77aeca844a12d02268 (patch)
treea3b643c9b03f9369e1276503c3e602e8be6bdfb8 /lisp
parentbe617bbf58e60b314cda414491ba5fc8bf798099 (diff)
downloademacs-1c51d057c46809c8ea955c77aeca844a12d02268.tar.gz
emacs-1c51d057c46809c8ea955c77aeca844a12d02268.zip
(substitute-key-definition): Fix typo.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 5abecd35310..9f6ad65bb4c 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -561,7 +561,7 @@ In other words, OLDDEF is replaced with NEWDEF where ever it appears.
561Alternatively, if optional fourth argument OLDMAP is specified, we redefine 561Alternatively, if optional fourth argument OLDMAP is specified, we redefine
562in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP. 562in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP.
563 563
564For most uses, it is simpler and safer to use command remappping like this: 564For most uses, it is simpler and safer to use command remapping like this:
565 \(define-key KEYMAP [remap OLDDEF] NEWDEF)" 565 \(define-key KEYMAP [remap OLDDEF] NEWDEF)"
566 ;; Don't document PREFIX in the doc string because we don't want to 566 ;; Don't document PREFIX in the doc string because we don't want to
567 ;; advertise it. It's meant for recursive calls only. Here's its 567 ;; advertise it. It's meant for recursive calls only. Here's its