From: John Paul Wallington Date: Fri, 3 Oct 2003 08:30:55 +0000 (+0000) Subject: (map_keymap): Don't abort when binding is a vector. X-Git-Tag: ttn-vms-21-2-B4~8637 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=26a6e439a3b443cfbf9780e1aceeec563f09a105;p=emacs.git (map_keymap): Don't abort when binding is a vector. --- diff --git a/src/ChangeLog b/src/ChangeLog index cc95bc68f67..8bd48cb74f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2003-10-03 John Paul Wallington + + * keymap.c (map_keymap): Don't abort when binding is a vector. + 2003-10-02 Jason Rumney * makefile.w32-in (emacs.o, coding.o, bytecode.o): Sync diff --git a/src/keymap.c b/src/keymap.c index 54dd942c7e2..5f1f2a3f3a3 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -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;