Lines Matching refs:edchars
56 static X_chars edchars; variable
1753 char tmp = edchars.eof; in x_end_of_text()
3286 edchars.erase = tty_state.c_cc[VERASE]; in x_mode()
3287 edchars.kill = tty_state.c_cc[VKILL]; in x_mode()
3288 edchars.intr = tty_state.c_cc[VINTR]; in x_mode()
3289 edchars.quit = tty_state.c_cc[VQUIT]; in x_mode()
3290 edchars.eof = tty_state.c_cc[VEOF]; in x_mode()
3292 edchars.werase = tty_state.c_cc[VWERASE]; in x_mode()
3297 if (edchars.erase == _POSIX_VDISABLE) in x_mode()
3298 edchars.erase = -1; in x_mode()
3299 if (edchars.kill == _POSIX_VDISABLE) in x_mode()
3300 edchars.kill = -1; in x_mode()
3301 if (edchars.intr == _POSIX_VDISABLE) in x_mode()
3302 edchars.intr = -1; in x_mode()
3303 if (edchars.quit == _POSIX_VDISABLE) in x_mode()
3304 edchars.quit = -1; in x_mode()
3305 if (edchars.eof == _POSIX_VDISABLE) in x_mode()
3306 edchars.eof = -1; in x_mode()
3307 if (edchars.werase == _POSIX_VDISABLE) in x_mode()
3308 edchars.werase = -1; in x_mode()
3311 if (edchars.erase >= 0) { in x_mode()
3312 bind_if_not_bound(0, edchars.erase, XFUNC_del_back); in x_mode()
3313 bind_if_not_bound(1, edchars.erase, XFUNC_del_bword); in x_mode()
3315 if (edchars.kill >= 0) in x_mode()
3316 bind_if_not_bound(0, edchars.kill, XFUNC_del_line); in x_mode()
3317 if (edchars.werase >= 0) in x_mode()
3318 bind_if_not_bound(0, edchars.werase, XFUNC_del_bword); in x_mode()
3319 if (edchars.intr >= 0) in x_mode()
3320 bind_if_not_bound(0, edchars.intr, XFUNC_abort); in x_mode()
3321 if (edchars.quit >= 0) in x_mode()
3322 bind_if_not_bound(0, edchars.quit, XFUNC_noop); in x_mode()
3560 if (c == edchars.intr || c == edchars.quit) { in x_vi()
3564 trapsig(c == edchars.intr ? SIGINT : SIGQUIT); in x_vi()
3567 } else if (c == edchars.eof && state != VVERSION) { in x_vi()
3569 x_vi_zotc(edchars.eof); in x_vi()
3742 } else if (ch == edchars.erase || ch == CTRL('h')) { in vi_hook()
3753 } else if (ch == edchars.kill) { in vi_hook()
3759 } else if (ch == edchars.werase) { in vi_hook()
3912 if (ch == edchars.erase || ch == CTRL('h')) { in vi_insert()
3938 if (ch == edchars.kill) { in vi_insert()
3949 if (ch == edchars.werase) { in vi_insert()
5458 edchars.erase = edchars.kill = edchars.intr = edchars.quit = in x_init()
5459 edchars.eof = -2; in x_init()
5461 edchars.werase = 027; in x_init()