Searched refs:tabstops (Results 1 – 3 of 3) sorted by relevance
54 static int tabstops[MAX_TABS]; /* the tabstops themselves */ variable139 if ((ocol % tabstops[0]) != 0) in tabify()143 ocol > tabstops[cstop]) in tabify()152 if (ocol != tabstops[cstop]) in tabify()191 ocol += ocol % tabstops[0]; in tabify()194 ocol < tabstops[cstop]) in tabify()195 ocol = tabstops[cstop++]; in tabify()242 if (nstops > 0 && i <= tabstops[nstops-1]) { in getstops()255 tabstops[nstops++] = i; in getstops()
53 static int tabstops[100]; variable159 ((column - 1) % tabstops[0]) !=160 (tabstops[0] - 1));164 if (tabstops[n] > column)171 while (column < tabstops[n]) {253 if (nstops > 0 && i <= tabstops[nstops-1]) { in getstops()259 tabstops[nstops++] = i; in getstops()
128 int tabstops = TABSTOPS; /* tabs set at these columns */ variable378 tabstops = atoi(optarg); in options()380 if (tabstops <= 0) { in options()382 tabstops = TABSTOPS; in options()792 endcol += tabstops - ((endcol - 1) % tabstops); in spaces()