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:
parent
a283f4a3d5
commit
4b04c52e37
1 changed files with 2 additions and 2 deletions
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue