From 9a54b6278fe5864140e8993e10656b3cbedfbeb0 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 9 Mar 1999 00:08:41 +0000 Subject: [PATCH] Tiny \n/\r fix in term_mouse. [originally from svn r80] --- terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.c b/terminal.c index 1bec9cc4..6df444a3 100644 --- a/terminal.c +++ b/terminal.c @@ -1517,7 +1517,7 @@ void term_mouse (Mouse_Button b, Mouse_Action a, int x, int y) { back->send (q, p-q); if (p <= data+len-sizeof(sel_nl) && !memcmp(p, sel_nl, sizeof(sel_nl))) { - back->send ("\r", 1); + back->send ("\n", 1); p += sizeof(sel_nl); } q = p; -- 2.45.2