commit 481529e8650d105c3280def764e4917af0cabb49
parent bc6645f753d38f4a9525e1ba16ec2af6ef057da9
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Fri, 20 Mar 2020 13:52:29 +0100
input: accommodate silly emulators that have LF instead of CR in a paste
Even though a user would never type ^J to start a new line, accept it
as a synonym of <Enter> (^M) in a bracketed paste, because apparently
bash accepts it as a synonym too.
This works around https://savannah.gnu.org/bugs/?58010.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/nano.c b/src/nano.c
@@ -1469,7 +1469,7 @@ void suck_up_input_and_paste_it(void)
while (bracketed_paste) {
int input = get_kbinput(edit, BLIND);
- if (input == '\r') {
+ if (input == '\r' || input == '\n') {
line->next = make_new_node(line);
line = line->next;
line->data = copy_of("");