]> git.eshelyaron.com Git - emacs.git/commitdiff
(map_keymap): Don't abort when binding is a vector.
authorJohn Paul Wallington <jpw@pobox.com>
Fri, 3 Oct 2003 08:30:55 +0000 (08:30 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Fri, 3 Oct 2003 08:30:55 +0000 (08:30 +0000)
src/ChangeLog
src/keymap.c

index cc95bc68f67f0d689bc611a9bef8bb4278e1f090..8bd48cb74f5021b9c3529c43269875c76e932309 100644 (file)
@@ -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
index 54dd942c7e272fce6859aa8afb1c2e0c2af32a44..5f1f2a3f3a3e093fa1e8ef6f41f4db571d25a940 100644 (file)
@@ -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;