Home | History | Annotate | Download | only in ul

Lines Matching refs:col

75 static size_t col, maxcol;
156 if (col > 0)
157 col--;
161 col = (col+8) & ~07;
162 if (col > maxcol)
163 maxcol = col;
164 if (col >= obuf_size)
169 col = 0;
221 if (obuf[col].c_char)
222 obuf[col].c_mode |= UNDERL | mode;
224 obuf[col].c_char = '_';
227 col++;
228 if (col > maxcol)
229 maxcol = col;
230 if (col >= obuf_size)
246 if (obuf[col].c_char == '\0') {
247 obuf[col].c_char = c;
248 obuf[col].c_mode = mode;
249 } else if (obuf[col].c_char == '_') {
250 obuf[col].c_char = c;
251 obuf[col].c_mode |= UNDERL|mode;
252 } else if (obuf[col].c_char == c)
253 obuf[col].c_mode |= BOLD|mode;
255 obuf[col].c_mode = mode;
256 col++;
257 if (col > maxcol)
258 maxcol = col;
259 if (col >= obuf_size)
378 col = 0;
394 oldcol = col;
397 col = oldcol;