mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
I had apparently broken wrapping of double-width characters (again).
Also fixed the new UTF-8 test file so that it tests double-width wrapping both with _and_ without LATTR_WRAPPED2. [originally from svn r5000]
This commit is contained in:
@ -2882,6 +2882,7 @@ static void term_out(Terminal *term)
|
||||
else if (term->curs.y < term->rows - 1)
|
||||
term->curs.y++;
|
||||
term->curs.x = 0;
|
||||
cline = scrlineptr(term->curs.y);
|
||||
/* Now we must check_boundary again, of course. */
|
||||
check_boundary(term, term->curs.x, term->curs.y);
|
||||
check_boundary(term, term->curs.x+2, term->curs.y);
|
||||
|
Reference in New Issue
Block a user