(display_line): For a tab continued to the next line,
set row's ends_in_middle_of_char_p.
This commit is contained in:
parent
6acf9baf12
commit
8738febd7b
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-10-23 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* xdisp.c (display_line): For a tab continued to the next line,
|
||||
set row's ends_in_middle_of_char_p.
|
||||
|
||||
2001-10-22 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* xdisp.c (display_line): Fix computation of continuation lines
|
||||
|
|
|
@ -12944,7 +12944,10 @@ display_line (it)
|
|||
|
||||
/* 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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue