Home | History | Annotate | Download | only in Support

Lines Matching refs:lastc

691 	int lastc;	/* previous c */
704 lastc = c;
709 /* is there an EOL and/or BOL between lastc and c? */
712 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
713 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
729 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
733 if ( (lastc != OUT && ISWORD(lastc)) &&
776 int lastc; /* previous c */
789 lastc = c;
792 /* is there an EOL and/or BOL between lastc and c? */
795 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
796 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
812 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
816 if ( (lastc != OUT && ISWORD(lastc)) &&