commit bash-20190531 snapshot

This commit is contained in:
Chet Ramey
2019-06-10 11:05:01 -04:00
parent 52e4696964
commit d88145ce29
9 changed files with 420 additions and 712 deletions
+2 -2
View File
@@ -1247,7 +1247,7 @@ bash_kill_shellword (count, key)
rl_kill_text (p, rl_point);
rl_point = p;
if (rl_editing_mode == 1) /* 1 == emacs_mode */
if (rl_editing_mode == EMACS_EDITING_MODE) /* 1 == emacs_mode */
rl_mark = rl_point;
return 0;
@@ -1268,7 +1268,7 @@ bash_backward_kill_shellword (count, key)
if (rl_point != p)
rl_kill_text (p, rl_point);
if (rl_editing_mode == 1) /* 1 == emacs_mode */
if (rl_editing_mode == EMACS_EDITING_MODE) /* 1 == emacs_mode */
rl_mark = rl_point;
return 0;