diff options
author | jimw@mysql.com <> | 2005-01-31 18:22:52 -0800 |
---|---|---|
committer | jimw@mysql.com <> | 2005-01-31 18:22:52 -0800 |
commit | d046eef5f9447652ca771308171e6ef8740556a7 (patch) | |
tree | 8341c6bfb397d0a10c8864556612b1797a0718ec /cmd-line-utils | |
parent | de16b5f48f0f30660f5df6c5269f1536fc5bf7e5 (diff) | |
download | mariadb-git-d046eef5f9447652ca771308171e6ef8740556a7.tar.gz |
Fix bug in bundled GNU readline library, based on similar report for
GNU bash (http://lists.gnu.org/archive/html/bug-bash/2002-08/msg00042.html)
and current code from GNU readline 5.0. (Bug #5672)
Diffstat (limited to 'cmd-line-utils')
-rw-r--r-- | cmd-line-utils/readline/bind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-line-utils/readline/bind.c b/cmd-line-utils/readline/bind.c index 7e8ca04e0d6..fd01049f09f 100644 --- a/cmd-line-utils/readline/bind.c +++ b/cmd-line-utils/readline/bind.c @@ -311,7 +311,7 @@ rl_generic_bind (type, keyseq, data, map) mapped to something, `abc' to be mapped to something else, and the function bound to `a' to be executed when the user types `abx', leaving `bx' in the input queue. */ - if (k.function /* && k.type == ISFUNC */) + if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR)) { map[ANYOTHERKEY] = k; k.function = 0; |