{
int absolute_x = (it->current_x
+ it->continuation_lines_width);
- /* Adjust for line numbers. Kludge alert: the "2" below is
- because we add 2 blanks to the actual line number. */
+ int x0 = absolute_x;
+ /* Adjust for line numbers. */
if (!NILP (Vdisplay_line_numbers))
- absolute_x -= it->lnum_width + 2 - it->w->hscroll;
+ absolute_x -= it->lnum_pixel_width;
int next_tab_x
= (((1 + absolute_x + it->tab_width - 1)
/ it->tab_width)
* it->tab_width);
+ if (!NILP (Vdisplay_line_numbers))
+ next_tab_x += it->lnum_pixel_width;
int nspaces;
/* If part of the TAB has been displayed on the previous line
been incremented already by the part that fitted on the
continued line. So, we will get the right number of spaces
here. */
- nspaces = next_tab_x - absolute_x;
+ nspaces = next_tab_x - x0;
if (it->glyph_row)
{
}
}
}
+ if (cursor_row->truncated_on_left_p)
+ {
+ /* On TTY frames, don't count the left truncation glyph. */
+ struct frame *f = XFRAME (WINDOW_FRAME (w));
+ x_offset -= (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f));
+ }
text_area_width = window_box_width (w, TEXT_AREA);
x -= it->lnum_pixel_width;
int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
if (!NILP (Vdisplay_line_numbers))
- next_tab_x += it->lnum_pixel_width;
+ next_tab_x += (it->lnum_pixel_width
+ - it->w->hscroll * font->space_width);
/* If the distance from the current position to the next tab
stop is less than a space character width, use the