mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-29 16:39:53 +02:00
commit bash-snap-20181031 snapshot
This commit is contained in:
@@ -4640,3 +4640,17 @@ redir.c
|
||||
raised back in March by Stephane Chazelas
|
||||
<stephane.chazelas@gmail.com>; fix inspired by Martijn Dekker
|
||||
<martijn@inlv.org>
|
||||
|
||||
10/29
|
||||
-----
|
||||
lib/readline/terminal.c
|
||||
- bind_termcap_arrow_keys: bind the "kI" capability (what the Insert
|
||||
keypad key outputs) to overwrite mode. Patch from Xose Vazquez Perez
|
||||
<xose.vazquez@gmail.com>
|
||||
|
||||
10/30
|
||||
-----
|
||||
braces.c
|
||||
- mkseq: make sure to terminate result array before passing it to
|
||||
strvec_dispose on an interrupt. Report and fix from Corbin Souffrant
|
||||
<corbin.souffrant@gmail.com>
|
||||
|
||||
@@ -438,6 +438,7 @@ mkseq (start, end, incr, type, width)
|
||||
#if defined (SHELL)
|
||||
if (ISINTERRUPT)
|
||||
{
|
||||
result[i] = (char *)NULL;
|
||||
strvec_dispose (result);
|
||||
result = (char **)NULL;
|
||||
}
|
||||
|
||||
@@ -595,6 +595,7 @@ bind_termcap_arrow_keys (Keymap map)
|
||||
rl_bind_keyseq_if_unbound (_rl_term_at7, rl_end_of_line); /* End */
|
||||
|
||||
rl_bind_keyseq_if_unbound (_rl_term_kD, rl_delete);
|
||||
rl_bind_keyseq_if_unbound (_rl_term_kI, rl_overwrite_mode); /* Insert */
|
||||
|
||||
_rl_keymap = xkeymap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user