Lines Matching defs:col
82 * places a tabstop at col
85 TabSet(Tabs tabs, int col)
87 if (OkTAB(col)) {
88 SET_TAB(tabs, col);
93 * clears a tabstop at col
96 TabClear(Tabs tabs, int col)
98 if (OkTAB(col)) {
99 CLR_TAB(tabs, col);
106 * A tabstop at col is ignored.
109 TabNext(XtermWidget xw, Tabs tabs, int col)
116 col = 0;
119 for (++col; col < MAX_TABS; ++col)
120 if (TST_TAB(tabs, col))
121 return (col);
129 * A tabstop at col is ignored.
132 TabPrev(Tabs tabs, int col)
134 for (--col; col >= 0; --col)
135 if ((col < MAX_TABS) && TST_TAB(tabs, col))
136 return (col);
195 TabIsSet(Tabs tabs, int col)
197 return TST_TAB(tabs, col) ? True : False;