diff options
| author | John Paul Wallington | 2003-10-03 08:30:55 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2003-10-03 08:30:55 +0000 |
| commit | 26a6e439a3b443cfbf9780e1aceeec563f09a105 (patch) | |
| tree | 9a08416e6e1790ceea5b802430fa0461e0f913ae /src | |
| parent | a63cf46f85bf85e8dd4d3bbb04fb73795a88aed8 (diff) | |
| download | emacs-26a6e439a3b443cfbf9780e1aceeec563f09a105.tar.gz emacs-26a6e439a3b443cfbf9780e1aceeec563f09a105.zip | |
(map_keymap): Don't abort when binding is a vector.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/keymap.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index cc95bc68f67..8bd48cb74f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-10-03 John Paul Wallington <jpw@gnu.org> | ||
| 2 | |||
| 3 | * keymap.c (map_keymap): Don't abort when binding is a vector. | ||
| 4 | |||
| 1 | 2003-10-02 Jason Rumney <jasonr@gnu.org> | 5 | 2003-10-02 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * makefile.w32-in (emacs.o, coding.o, bytecode.o): Sync | 7 | * 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) | |||
| 695 | /* Loop over the char values represented in the vector. */ | 695 | /* Loop over the char values represented in the vector. */ |
| 696 | int len = ASIZE (binding); | 696 | int len = ASIZE (binding); |
| 697 | int c; | 697 | int c; |
| 698 | abort(); | ||
| 699 | for (c = 0; c < len; c++) | 698 | for (c = 0; c < len; c++) |
| 700 | { | 699 | { |
| 701 | Lisp_Object character; | 700 | Lisp_Object character; |