Lines Matching refs:t_col
26 static void t_puts(int *t_col, char_u *t_s, char_u *s, int attr);
2168 int t_col = 0; // screen cells todo, 0 when "t_s" not used in msg_puts_display() local
2193 ((*s != '\r' && msg_col + t_col >= Columns - 1) in msg_puts_display()
2194 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7)) in msg_puts_display()
2196 && msg_col + t_col >= Columns - 2))))) in msg_puts_display()
2203 if (t_col > 0) in msg_puts_display()
2205 t_puts(&t_col, t_s, s, attr); in msg_puts_display()
2277 || msg_col + t_col >= Columns in msg_puts_display()
2279 && msg_col + t_col >= Columns - 1); in msg_puts_display()
2280 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b' in msg_puts_display()
2283 t_puts(&t_col, t_s, s, attr); in msg_puts_display()
2342 (cw > 1 && msg_col + t_col >= Columns - 1)) in msg_puts_display()
2352 if (t_col == 0) in msg_puts_display()
2354 t_col += cw; in msg_puts_display()
2362 if (t_col > 0) in msg_puts_display()
2363 t_puts(&t_col, t_s, s, attr); in msg_puts_display()
2663 int *t_col, in t_puts() argument
2671 msg_col += *t_col; in t_puts()
2672 *t_col = 0; in t_puts()