Bash-4.3 patch 3
This commit is contained in:
parent
7f89f4cd13
commit
1233ce5a41
2 changed files with 3 additions and 2 deletions
|
|
@ -744,7 +744,8 @@ _rl_dispatch_callback (cxt)
|
||||||
r = _rl_subseq_result (r, cxt->oldmap, cxt->okey, (cxt->flags & KSEQ_SUBSEQ));
|
r = _rl_subseq_result (r, cxt->oldmap, cxt->okey, (cxt->flags & KSEQ_SUBSEQ));
|
||||||
|
|
||||||
RL_CHECK_SIGNALS ();
|
RL_CHECK_SIGNALS ();
|
||||||
if (r == 0) /* success! */
|
/* 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 ();
|
_rl_keyseq_chain_dispose ();
|
||||||
RL_UNSETSTATE (RL_STATE_MULTIKEY);
|
RL_UNSETSTATE (RL_STATE_MULTIKEY);
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,6 @@
|
||||||
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
|
||||||
looks for to find the patch level (for the sccs version string). */
|
looks for to find the patch level (for the sccs version string). */
|
||||||
|
|
||||||
#define PATCHLEVEL 2
|
#define PATCHLEVEL 3
|
||||||
|
|
||||||
#endif /* _PATCHLEVEL_H_ */
|
#endif /* _PATCHLEVEL_H_ */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue