summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */