1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

pasting now sends \015 rather than \r

[originally from svn r87]
This commit is contained in:
Ben Harris 1999-03-11 11:10:53 +00:00
parent a9b6f0b18f
commit 825297641d

View File

@ -1472,7 +1472,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 ("\015", 1);
p += sizeof(sel_nl);
}
q = p;