Symbol: werase
bin/ksh/edit.c
221
edchars.werase = cb.c_cc[VWERASE];
bin/ksh/edit.c
261
edchars.werase = cb.lchars.tc_werasc;
bin/ksh/edit.c
276
edchars.werase = cb.ltchars.t_werasc;
bin/ksh/edit.c
298
if (edchars.werase == vdisable_c)
bin/ksh/edit.c
299
edchars.werase = -1;
bin/ksh/edit.c
52
edchars.werase = 027; /* ^W */
bin/ksh/edit.h
34
int werase;
bin/ksh/emacs.c
1531
if (ec->werase >= 0)
bin/ksh/emacs.c
1532
bind_if_not_bound(0, ec->werase, XFUNC_del_bword);
bin/ksh/vi.c
427
} else if (ch == edchars.werase) {
bin/ksh/vi.c
613
if (ch == edchars.werase) {
games/cribbage/crib.c
267
werase(Tablewin);
games/cribbage/crib.c
269
werase(Compwin);
games/cribbage/crib.c
322
werase(Compwin);
games/cribbage/crib.c
324
werase(Tablewin);
games/cribbage/crib.c
338
werase(Tablewin);
games/cribbage/io.c
161
werase(win);
games/mille/init.c
118
werase(Board);
games/mille/init.c
119
werase(Score);
games/sail/pl_7.c
360
werase(scroll_w);
games/sail/pl_7.c
574
werase(view_w);
games/sail/pl_7.c
724
werase(view_w);
games/sail/pl_7.c
725
werase(slot_w);
games/sail/pl_7.c
726
werase(scroll_w);
games/sail/pl_7.c
727
werase(stat_w);
games/sail/pl_7.c
728
werase(turn_w);
lib/libcurses/clear.c
68
if (werase(win) == OK) {
lib/libcurses/curses.h
456
#define erase() werase(stdscr)
lib/libcurses/curses.h
801
int werase(WINDOW *);
lib/libcurses/erase.c
55
return werase(stdscr);
lib/libcurses/refresh.c
597
werase(curscr);
lib/libcurses/refresh.c
608
werase(curscr);
lib/libcurses/slk.c
394
werase(screen->slk_window);
lib/libmenu/post.c
102
werase(menu->scrwin);
tests/lib/libcurses/slave/curses_commands.c
3083
report_return(werase(win));
usr.bin/systat/ifstat.c
494
werase(wnd);
usr.bin/systat/ifstat.c
528
werase(wnd);
usr.bin/talk/display.c
95
if (*text == win->werase) {
usr.bin/talk/init_disp.c
112
my_win.werase = '\027'; /* control W */
usr.bin/talk/init_disp.c
114
my_win.werase = tty.c_cc[VWERASE];
usr.bin/talk/init_disp.c
117
buf[2] = my_win.werase;
usr.bin/talk/init_disp.c
126
his_win.werase = buf[2];
usr.bin/talk/talk.h
57
char werase;