Home
last modified time | relevance | path

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

/trueos/contrib/tcsh/
HDed.refresh.c253 while (vcursor_h + width > TermH) in Vdraw()
260 if (vcursor_h >= TermH) { in Vdraw()
261 Vdisplay[vcursor_v][TermH] = '\0'; /* assure end of line */ in Vdraw()
365 rhdiff = TermH - vcursor_h - rprompt_h; in Refresh()
386 TermH, vcursor_h, vcursor_v, short2str(Vdisplay[0])); in Refresh()
405 cpy_pad_spaces(Display[cur_line], Vdisplay[cur_line], TermH); in Refresh()
838 if ((nsb != nfd) && fx > 0 && ((p - old) + fx < TermH)) { in update_line()
862 str_insert(old, (int) (ofd - old), TermH, nfd, fx); in update_line()
907 str_delete(old, (int) (ofd - old), TermH, -fx); in update_line()
933 ClearEOL(TermH - CursorH); in update_line()
[all …]
HDed.screen.c430 TermH = Val(T_co); in ReBufferDisplay()
431 TermV = (INBUFSIZE * 4) / TermH + 1;/*FIXBUF*/ in ReBufferDisplay()
434 b[i] = xmalloc(sizeof(*b[i]) * (TermH + 1)); in ReBufferDisplay()
439 b[i] = xmalloc(sizeof(*b[i]) * (TermH + 1)); in ReBufferDisplay()
1041 for (h = TermH - 1; h > 0 && Display[CursorV][h] == CHAR_DBWIDTH; in MoveToLine()
1046 so_write(&Display[CursorV][CursorH], TermH - CursorH); /* updates CursorH/V*/ in MoveToLine()
1084 if (where >= TermH) { in MoveToChar()
1157 if (n > TermH) { in so_write()
1183 cur_pos = CursorV * TermH + CursorH; in so_write()
1215 if (CursorH >= TermH) { /* wrap? */ in so_write()
[all …]
HDed.h179 TermH; /* screen width */ variable
HDsh.dir.c289 if ((dflag & DIR_LINE) && cur >= TermH - 1 && len < TermH) { in printdirs()
HDtw.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()
HDed.term.c643 if (len + cu >= TermH) { in dosetty()
HDsh.proc.c1420 if (len >= TermH - 1) { in dokill()
HDsh.func.c2529 columns = (TermH + 1) / maxwidth; /* PWP: terminal size change */
HDFixes289 21. Don't use T_Cols for wrapping purposes; use TermH consistently