Mercurial > emacs
diff src/keymap.c @ 8517:a7fe53588b6f
(Fdefine_key): Fix error message.
(Fsingle_key_description): Likewise.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Thu, 11 Aug 1994 19:45:41 +0000 |
| parents | c285c3b0ea54 |
| children | 7ebb77d4aff2 |
line wrap: on
line diff
--- a/src/keymap.c Thu Aug 11 07:18:04 1994 +0000 +++ b/src/keymap.c Thu Aug 11 19:45:41 1994 +0000 @@ -628,7 +628,7 @@ } 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 @@ 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"); } }
