From: Richard M. Stallman Date: Thu, 11 Aug 1994 19:45:41 +0000 (+0000) Subject: (Fdefine_key): Fix error message. X-Git-Tag: emacs-19.34~7336 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4b04c52e373002a0da810c7be0dfab91cbfb0b22;p=emacs.git (Fdefine_key): Fix error message. (Fsingle_key_description): Likewise. --- diff --git a/src/keymap.c b/src/keymap.c index bad22160a9c..9396ee77760 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -628,7 +628,7 @@ the front of KEYMAP.") } if (! INTEGERP (c) && ! SYMBOLP (c) && ! CONSP (c)) - error ("Key sequence contains illegal events"); + error ("Key sequence contains invalid events"); if (idx == length) RETURN_UNGCPRO (store_in_keymap (keymap, c, def)); @@ -1519,7 +1519,7 @@ Control characters turn into C-whatever, etc.") return Fcopy_sequence (key); default: - error ("KEY must be an integer, cons, symbol, or string."); + error ("KEY must be an integer, cons, symbol, or string"); } }