diff options
Diffstat (limited to 'main/readline/readline-6.3-dispatch-multikey.patch')
-rw-r--r-- | main/readline/readline-6.3-dispatch-multikey.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/main/readline/readline-6.3-dispatch-multikey.patch b/main/readline/readline-6.3-dispatch-multikey.patch deleted file mode 100644 index 641a2f3d6a3..00000000000 --- a/main/readline/readline-6.3-dispatch-multikey.patch +++ /dev/null @@ -1,16 +0,0 @@ -*** a/readline.c 2013-10-28 14:58:06.000000000 -0400 ---- b/readline.c 2014-03-10 14:15:02.000000000 -0400 -*************** -*** 745,749 **** - - RL_CHECK_SIGNALS (); -! if (r == 0) /* success! */ - { - _rl_keyseq_chain_dispose (); ---- 745,750 ---- - - RL_CHECK_SIGNALS (); -! /* We only treat values < 0 specially to simulate recursion. */ -! if (r >= 0 || (r == -1 && (cxt->flags & KSEQ_SUBSEQ) == 0)) /* success! or failure! */ - { - _rl_keyseq_chain_dispose (); |