From: Tom Tromey Date: Sun, 7 Oct 2018 21:25:44 +0000 (-0600) Subject: Remove gdb workaround from readline/emacs_keymap.c X-Git-Tag: binutils-2_33~267 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a2d4e4b70945c1704e5249ad6a9be9d5875a4b0e;p=thirdparty%2Fbinutils-gdb.git Remove gdb workaround from readline/emacs_keymap.c There is a gdb-local patch in readline/emacs_keymap.c that says: /* Temporary - this is a bug in readline 5.1 that should be fixed in readline 5.2. */ So, I think this can be removed now. I have no way to test this, as the patch was specific to mingw. readline/ChangeLog.gdb 2018-10-07 Tom Tromey * emacs_keymap.c: Remove gdb workaround. --- diff --git a/readline/ChangeLog.gdb b/readline/ChangeLog.gdb index 7125d4d43fb..cecdc5ed9ac 100644 --- a/readline/ChangeLog.gdb +++ b/readline/ChangeLog.gdb @@ -1,5 +1,9 @@ 2019-08-12 Tom Tromey + * emacs_keymap.c: Remove gdb workaround. + +2018-08-12 Tom Tromey + * complete.c (get_y_or_n): Remove gdb workaround. 2018-08-12 Tom Tromey diff --git a/readline/emacs_keymap.c b/readline/emacs_keymap.c index 9f816581efa..cb6e140a217 100644 --- a/readline/emacs_keymap.c +++ b/readline/emacs_keymap.c @@ -277,13 +277,7 @@ KEYMAP_ENTRY_ARRAY emacs_standard_keymap = { { ISFUNC, rl_insert }, /* Latin capital letter Y with acute */ { ISFUNC, rl_insert }, /* Latin capital letter thorn (Icelandic) */ { ISFUNC, rl_insert }, /* Latin small letter sharp s (German) */ -#ifndef __MINGW32__ { ISFUNC, rl_insert }, /* Latin small letter a with grave */ -#else - /* Temporary - this is a bug in readline 5.1 that should be fixed in - readline 5.2. */ - { ISFUNC, 0 }, /* Must leave this unbound for the arrow keys to work. */ -#endif { ISFUNC, rl_insert }, /* Latin small letter a with acute */ { ISFUNC, rl_insert }, /* Latin small letter a with circumflex */ { ISFUNC, rl_insert }, /* Latin small letter a with tilde */