aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-07 07:18:20 +0000
committerRichard M. Stallman1994-04-07 07:18:20 +0000
commit9ed287b0418165f173eabde165b1da3ff75442c3 (patch)
treec0ef5ec3ba24aa727192236ec02b833311072ad5
parent0732dfa5c1070905571405c03d7b613b0da5fa56 (diff)
downloademacs-9ed287b0418165f173eabde165b1da3ff75442c3.tar.gz
emacs-9ed287b0418165f173eabde165b1da3ff75442c3.zip
(define-key-after): Doc fix.
-rw-r--r--lisp/subr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 50321c3d666..2b4a3eda1e2 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -217,8 +217,8 @@ This is like `define-key' except that the binding for KEY is placed
217just after the binding for the event AFTER, instead of at the beginning 217just after the binding for the event AFTER, instead of at the beginning
218of the map. 218of the map.
219The order matters when the keymap is used as a menu. 219The order matters when the keymap is used as a menu.
220KEY must contain just one event type--it must be a string or vector 220KEY must contain just one event type--that is to say, it must be
221of length 1." 221a string or vector of length 1."
222 (or (keymapp keymap) 222 (or (keymapp keymap)
223 (signal 'wrong-type-argument (list 'keymapp keymap))) 223 (signal 'wrong-type-argument (list 'keymapp keymap)))
224 (if (> (length key) 1) 224 (if (> (length key) 1)