Searched refs:TermH (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/tcsh/ |
H A D | ed.refresh.c | 279 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 D | ed.screen.c | 426 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 D | ed.h | 178 TermH; /* screen width */ variable
|
H A D | sh.dir.c | 281 if ((dflag & DIR_LINE) && cur >= TermH - 1 && len < TermH) { in printdirs()
|
H A D | tw.parse.c | 2142 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 D | ed.term.c | 640 if (len + cu >= TermH) { in dosetty()
|
H A D | sh.proc.c | 1449 if (len >= TermH - 1) { in dokill()
|
H A D | sh.func.c | 2573 columns = (TermH + 1) / maxwidth; /* PWP: terminal size change */
|
H A D | Fixes | 428 21. Don't use T_Cols for wrapping purposes; use TermH consistently
|