(map_keymap): Don't abort when binding is a vector.
This commit is contained in:
parent
a63cf46f85
commit
26a6e439a3
2 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-10-03 John Paul Wallington <jpw@gnu.org>
|
||||
|
||||
* keymap.c (map_keymap): Don't abort when binding is a vector.
|
||||
|
||||
2003-10-02 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* makefile.w32-in (emacs.o, coding.o, bytecode.o): Sync
|
||||
|
|
|
@ -695,7 +695,6 @@ map_keymap (map, fun, args, data, autoload)
|
|||
/* Loop over the char values represented in the vector. */
|
||||
int len = ASIZE (binding);
|
||||
int c;
|
||||
abort();
|
||||
for (c = 0; c < len; c++)
|
||||
{
|
||||
Lisp_Object character;
|
||||
|
|
Loading…
Add table
Reference in a new issue