1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-22 07:51:17 -08:00

(Fdefine_key): Fix error message.

(Fsingle_key_description): Likewise.
This commit is contained in:
Richard M. Stallman 1994-08-11 19:45:41 +00:00
parent a283f4a3d5
commit 4b04c52e37

View file

@ -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");
}
}