summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2020-11-17 14:20:33 -0500
committerChet Ramey <chet.ramey@case.edu>2020-11-17 14:20:33 -0500
commitacb676c4a529f4147b3087e9e66d372cee2564ca (patch)
treeecbd0d82d806d6c535ec8518dd2071c68979f47f
parent8086db3318caec84ed28b10df07bf7a2db10e5f4 (diff)
downloadreadline-8.1-testing.tar.gz
Readline-8.1-rc3 releasereadline-8.1-rc3readline-8.1-testing
-rw-r--r--CHANGES3
-rw-r--r--NEWS3
-rw-r--r--isearch.c1
3 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 79628e8..747fa41 100644
--- a/CHANGES
+++ b/CHANGES
@@ -103,7 +103,8 @@ e. rl-clear-display: new bindable command that clears the screen and, if
f. New active mark and face feature: when enabled, it will highlight the text
inserted by a bracketed paste (the `active region') and the text found by
- incremental and non-incremental history searches.
+ incremental and non-incremental history searches. This is tied to bracketed
+ paste and can be disabled by turning off bracketed paste.
g. Readline sets the mark in several additional commands.
diff --git a/NEWS b/NEWS
index c328628..56ab93a 100644
--- a/NEWS
+++ b/NEWS
@@ -21,7 +21,8 @@ e. rl-clear-display: new bindable command that clears the screen and, if
f. New active mark and face feature: when enabled, it will highlight the text
inserted by a bracketed paste (the `active region') and the text found by
- incremental and non-incremental history searches.
+ incremental and non-incremental history searches. This is tied to bracketed
+ paste and can be disabled by turning off bracketed paste.
g. Readline sets the mark in several additional commands.
diff --git a/isearch.c b/isearch.c
index ef65e5f..080ba3c 100644
--- a/isearch.c
+++ b/isearch.c
@@ -619,6 +619,7 @@ opcode_dispatch:
rl_restore_prompt();
rl_clear_message ();
+ _rl_fix_point (1); /* in case save_line and save_point are out of sync */
return -1;
case -5: /* C-W */