Home
last modified time | relevance | path

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

/coreutils/src/
Dunexpand.c137 uintmax_t next_tab_column = 0; in unexpand() local
169 next_tab_column = get_next_tab_column (column, &tab_index, in unexpand()
177 if (next_tab_column < column) in unexpand()
182 column = next_tab_column; in unexpand()
191 if (! (prev_blank && column == next_tab_column)) in unexpand()
195 if (column == next_tab_column) in unexpand()
216 next_tab_column = column; in unexpand()
Dexpand.c133 uintmax_t next_tab_column; in expand() local
136 next_tab_column = get_next_tab_column (column, &tab_index, in expand()
140 next_tab_column = column + 1; in expand()
142 if (next_tab_column < column) in expand()
145 while (++column < next_tab_column) in expand()