Lines Matching defs:lastc
887 wint_t lastc; /* previous c */
918 lastc = c;
930 /* is there an EOL and/or BOL between lastc and c? */
933 if ( (lastc == '\n' && m->g->cflags®_NEWLINE) ||
934 (lastc == OUT && !(m->eflags®_NOTBOL)) ) {
943 if (lastc == OUT && (m->eflags & REG_NOTBOL) == 0) {
961 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
965 if ( (lastc != OUT && ISWORD(lastc)) &&
973 if (lastc != OUT && c != OUT &&
974 ISWORD(lastc) == ISWORD(c)) {
976 } else if ((lastc == OUT && !ISWORD(c)) ||
977 (c == OUT && !ISWORD(lastc))) {