Searched refs:tabstops (Results 1 – 3 of 3) sorted by relevance
56 static int tabstops[MAX_TABS]; /* the tabstops themselves */ variable141 if ((ocol % tabstops[0]) != 0) in tabify()145 ocol > tabstops[cstop]) in tabify()154 if (ocol != tabstops[cstop]) in tabify()193 ocol += ocol % tabstops[0]; in tabify()196 ocol < tabstops[cstop]) in tabify()197 ocol = tabstops[cstop++]; in tabify()244 if (nstops > 0 && i <= tabstops[nstops-1]) { in getstops()257 tabstops[nstops++] = i; in getstops()
55 static int tabstops[100]; variable161 ((column - 1) % tabstops[0]) !=162 (tabstops[0] - 1));166 if (tabstops[n] > column)173 while (column < tabstops[n]) {255 if (nstops > 0 && i <= tabstops[nstops-1]) { in getstops()261 tabstops[nstops++] = i; in getstops()
129 int tabstops = TABSTOPS; /* tabs set at these columns */ variable379 tabstops = atoi(optarg); in options()381 if (tabstops <= 0) { in options()383 tabstops = TABSTOPS; in options()793 endcol += tabstops - ((endcol - 1) % tabstops); in spaces()