From acb676c4a529f4147b3087e9e66d372cee2564ca Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Tue, 17 Nov 2020 14:20:33 -0500 Subject: Readline-8.1-rc3 release --- CHANGES | 3 ++- NEWS | 3 ++- isearch.c | 1 + 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 */ -- cgit v1.2.1