Home
last modified time | relevance | path

Searched refs:TermH (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/tcsh/
H A Ded.refresh.c279 while (vcursor_h + width > TermH) in Vdraw()
286 if (vcursor_h >= TermH) { in Vdraw()
287 Vdisplay[vcursor_v][TermH] = '\0'; /* assure end of line */ in Vdraw()
391 rhdiff = TermH - vcursor_h - rprompt_h; in Refresh()
412 TermH, vcursor_h, vcursor_v, short2str(Vdisplay[0])); in Refresh()
431 cpy_pad_spaces(Display[cur_line], Vdisplay[cur_line], TermH); in Refresh()
864 if ((nsb != nfd) && fx > 0 && ((p - old) + fx < TermH)) { in update_line()
888 str_insert(old, (int) (ofd - old), TermH, nfd, fx); in update_line()
933 str_delete(old, (int) (ofd - old), TermH, -fx); in update_line()
959 ClearEOL(TermH - CursorH); in update_line()
[all …]
H A Ded.screen.c426 TermH = Val(T_co); in ReBufferDisplay()
427 TermV = (INBUFSIZE * 4) / TermH + 1;/*FIXBUF*/ in ReBufferDisplay()
430 b[i] = xmalloc(sizeof(*b[i]) * (TermH + 1)); in ReBufferDisplay()
435 b[i] = xmalloc(sizeof(*b[i]) * (TermH + 1)); in ReBufferDisplay()
1037 for (h = TermH - 1; h > 0 && Display[CursorV][h] == CHAR_DBWIDTH; in MoveToLine()
1042 so_write(&Display[CursorV][CursorH], TermH - CursorH); /* updates CursorH/V*/ in MoveToLine()
1080 if (where >= TermH) { in MoveToChar()
1153 if (n > TermH) { in so_write()
1179 cur_pos = CursorV * TermH + CursorH; in so_write()
1211 if (CursorH >= TermH) { /* wrap? */ in so_write()
[all …]
H A Ded.h178 TermH; /* screen width */ variable
H A Dsh.dir.c281 if ((dflag & DIR_LINE) && cur >= TermH - 1 && len < TermH) { in printdirs()
H A Dtw.parse.c2142 columns = (TermH + 1) / maxwidth; /* PWP: terminal size change */ in find_rows()
2176 columns = TermH / maxwidth; /* PWP: terminal size change */ in print_by_column()
H A Ded.term.c640 if (len + cu >= TermH) { in dosetty()
H A Dsh.proc.c1449 if (len >= TermH - 1) { in dokill()
H A Dsh.func.c2573 columns = (TermH + 1) / maxwidth; /* PWP: terminal size change */
H A DFixes428 21. Don't use T_Cols for wrapping purposes; use TermH consistently