]> git.ipfire.org Git - thirdparty/readline.git/commitdiff
Readline-8.1-rc3 release readline-8.1-testing readline-8.1-rc3
authorChet Ramey <chet.ramey@case.edu>
Tue, 17 Nov 2020 19:20:33 +0000 (14:20 -0500)
committerChet Ramey <chet.ramey@case.edu>
Tue, 17 Nov 2020 19:20:33 +0000 (14:20 -0500)
CHANGES
NEWS
isearch.c

diff --git a/CHANGES b/CHANGES
index 79628e85a0533290044df4b03cc990362098d83f..747fa41962f2ee6604a6354b691ea5a136a7487d 100644 (file)
--- 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 c3286288dd47c8ddd2c8928480c0e1ea60e80d4b..56ab93aa1b98f5bfc988cbf798e14def60ae4586 100644 (file)
--- 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.
 
index ef65e5f553df66beea5726a9d4ead3497509a17b..080ba3cbb9c56ca617a306873c731b55ef561e0e 100644 (file)
--- 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 */