From 26a6e439a3b443cfbf9780e1aceeec563f09a105 Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Fri, 3 Oct 2003 08:30:55 +0000 Subject: [PATCH] (map_keymap): Don't abort when binding is a vector. --- src/ChangeLog | 4 ++++ src/keymap.c | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) 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; -- 2.39.2