Home | History | Annotate | Download | only in talk

Lines Matching refs:my_win

76 	my_win.x_nlines = LINES / 2;
77 my_win.x_ncols = COLS;
78 my_win.x_win = newwin(my_win.x_nlines, my_win.x_ncols, 0, 0);
79 scrollok(my_win.x_win, FALSE);
80 wclear(my_win.x_win);
85 my_win.x_nlines+1, 0);
89 line_win = newwin(1, COLS, my_win.x_nlines, 0);
109 my_win.cerase = tty.c_cc[VERASE];
110 my_win.kill = tty.c_cc[VKILL];
112 my_win.werase = '\027'; /* control W */
114 my_win.werase = tty.c_cc[VWERASE];
115 buf[0] = my_win.cerase;
116 buf[1] = my_win.kill;
117 buf[2] = my_win.werase;