# HG changeset patch # User Gerd Moellmann # Date 1003831314 0 # Node ID 58c5e5aacc45301fe8c29099017312fa9e279379 # Parent 0bd966523c89136d1c71f6e27179897dd0019586 (display_line): For a tab continued to the next line, set row's ends_in_middle_of_char_p. diff -r 0bd966523c89 -r 58c5e5aacc45 src/xdisp.c --- a/src/xdisp.c Tue Oct 23 09:05:27 2001 +0000 +++ b/src/xdisp.c Tue Oct 23 10:01:54 2001 +0000 @@ -12944,7 +12944,10 @@ /* A TAB takes us to the right edge of the window. */ if (it->c == '\t') - it->continuation_lines_width += it->last_visible_x; + { + it->continuation_lines_width += it->last_visible_x; + row->ends_in_middle_of_char_p = 1; + } else it->continuation_lines_width += x;