HomeSort by: relevance | last modified time | path
    Searched refs:edchars (Results 1 - 3 of 3) sorted by relevancy

  /src/bin/ksh/
edit.c 49 edchars.erase = edchars.kill = edchars.intr = edchars.quit
50 = edchars.eof = -2;
52 edchars.werase = 027; /* ^W */
211 oldchars = edchars;
215 edchars.erase = cb.c_cc[VERASE];
216 edchars.kill = cb.c_cc[VKILL];
217 edchars.intr = cb.c_cc[VINTR]
    [all...]
edit.h 40 EXTERN X_chars edchars; variable in typeref:typename:EXTERN X_chars
vi.c 224 if (c == edchars.intr || c == edchars.quit) {
228 trapsig(c == edchars.intr ? SIGINT : SIGQUIT);
231 } else if (c == edchars.eof && state != VVERSION) {
233 x_vi_zotc(edchars.eof);
410 } else if (ch == edchars.erase || ch == Ctrl('h')) {
421 } else if (ch == edchars.kill) {
427 } else if (ch == edchars.werase) {
574 if (ch == edchars.erase || ch == Ctrl('h')) {
602 if (ch == edchars.kill)
    [all...]

Completed in 12 milliseconds