Home
last modified time | relevance | path

Searched refs:this_len (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dgui.c2106 int this_len; in gui_outstr() local
2121 for (this_len = 0; this_len < len; ) in gui_outstr()
2123 cells += (*mb_ptr2cells)(s + this_len); in gui_outstr()
2126 this_len += (*mb_ptr2len)(s + this_len); in gui_outstr()
2128 if (this_len > len) in gui_outstr()
2129 this_len = len; // don't include following composing char in gui_outstr()
2133 this_len = Columns - gui.col; in gui_outstr()
2135 this_len = len; in gui_outstr()
2137 (void)gui_outstr_nowrap(s, this_len, in gui_outstr()
2139 s += this_len; in gui_outstr()
[all …]