Lines Matching refs:text
63 display(xwin_t *win, char *text, int size) in display() argument
69 if (*text == '\n' || *text == '\r') { in display()
72 text++; in display()
75 if (*text == 004 && win == &my_win) { in display()
83 text++; in display()
88 if ( *text == win->cerase in display()
89 || *text == 010 /* BS */ in display()
90 || *text == 0177 /* DEL */ in display()
97 text++; in display()
105 if ( *text == win->werase in display()
106 || *text == 027 /* ^W */ in display()
129 text++; in display()
133 if ( *text == win->kill in display()
134 || *text == 025 /* ^U */ in display()
139 text++; in display()
142 if (*text == '\f') { in display()
145 text++; in display()
148 if (*text == '\7') { in display()
149 write(STDOUT_FILENO, text, 1); in display()
150 text++; in display()
153 if (!isprint((unsigned char)*text) && *text != '\t') { in display()
156 cch = (*text & 63) + 64; in display()
159 waddch(win->x_win, (unsigned char)*text); in display()
161 text++; in display()