Home
last modified time | relevance | path

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

/freebsd/contrib/less/
H A Dline.c1019 int to_tab = col - (int) linebuf.pfx_end; /*{{type-issue}}*/ in tab_spaces() local
1021 if (ntabstops < 2 || to_tab >= tabstops[ntabstops-1]) in tab_spaces()
1022 to_tab = tabdefault - in tab_spaces()
1023 ((to_tab - tabstops[ntabstops-1]) % tabdefault); in tab_spaces()
1028 if (to_tab >= tabstops[i]) in tab_spaces()
1030 to_tab = tabstops[i+1] - to_tab; in tab_spaces()
1032 return to_tab; in tab_spaces()
1044 int to_tab = tab_spaces(end_column); in store_tab() local
1047 } while (--to_tab > 0); in store_tab()