REQUIRE            57 ext/ereg/regex/regcomp.c #define	MUSTSEE(c, e)	(REQUIRE(MORE() && PEEK() == (c), e))
REQUIRE            58 ext/ereg/regex/regcomp.c #define	MUSTEAT(c, e)	(REQUIRE(MORE() && GETNEXT() == (c), e))
REQUIRE            59 ext/ereg/regex/regcomp.c #define	MUSTNOTSEE(c, e)	(REQUIRE(!MORE() || PEEK() != (c), e))
REQUIRE           207 ext/ereg/regex/regcomp.c 		(void) REQUIRE(HERE() != conc, REG_EMPTY);	/* require nonempty */
REQUIRE           254 ext/ereg/regex/regcomp.c 		REQUIRE(MORE(), REG_EPAREN);
REQUIRE           310 ext/ereg/regex/regcomp.c 		REQUIRE(MORE(), REG_EESCAPE);
REQUIRE           315 ext/ereg/regex/regcomp.c 		REQUIRE(!MORE() || !isdigit(PEEK()), REG_BADRPT);
REQUIRE           331 ext/ereg/regex/regcomp.c 	REQUIRE(!wascaret, REG_BADRPT);
REQUIRE           358 ext/ereg/regex/regcomp.c 				REQUIRE(count <= count2, REG_BADBR);
REQUIRE           367 ext/ereg/regex/regcomp.c 			REQUIRE(MORE(), REG_EBRACE);
REQUIRE           390 ext/ereg/regex/regcomp.c 	REQUIRE(MORE(), REG_EMPTY);
REQUIRE           433 ext/ereg/regex/regcomp.c 	REQUIRE(HERE() != start, REG_EMPTY);	/* require nonempty */
REQUIRE           458 ext/ereg/regex/regcomp.c 		REQUIRE(MORE(), REG_EESCAPE);
REQUIRE           488 ext/ereg/regex/regcomp.c 		REQUIRE(EATTWO('\\', ')'), REG_EPAREN);
REQUIRE           518 ext/ereg/regex/regcomp.c 		REQUIRE(starordinary, REG_BADRPT);
REQUIRE           536 ext/ereg/regex/regcomp.c 				REQUIRE(count <= count2, REG_BADBR);
REQUIRE           545 ext/ereg/regex/regcomp.c 			REQUIRE(MORE(), REG_EBRACE);
REQUIRE           570 ext/ereg/regex/regcomp.c 	REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);
REQUIRE           681 ext/ereg/regex/regcomp.c 		REQUIRE(MORE(), REG_EBRACK);
REQUIRE           683 ext/ereg/regex/regcomp.c 		REQUIRE(c != '-' && c != ']', REG_ECTYPE);
REQUIRE           685 ext/ereg/regex/regcomp.c 		REQUIRE(MORE(), REG_EBRACK);
REQUIRE           686 ext/ereg/regex/regcomp.c 		REQUIRE(EATTWO(':', ']'), REG_ECTYPE);
REQUIRE           690 ext/ereg/regex/regcomp.c 		REQUIRE(MORE(), REG_EBRACK);
REQUIRE           692 ext/ereg/regex/regcomp.c 		REQUIRE(c != '-' && c != ']', REG_ECOLLATE);
REQUIRE           694 ext/ereg/regex/regcomp.c 		REQUIRE(MORE(), REG_EBRACK);
REQUIRE           695 ext/ereg/regex/regcomp.c 		REQUIRE(EATTWO('=', ']'), REG_ECOLLATE);
REQUIRE           710 ext/ereg/regex/regcomp.c 		REQUIRE(start <= finish, REG_ERANGE);
REQUIRE           778 ext/ereg/regex/regcomp.c 	REQUIRE(MORE(), REG_EBRACK);
REQUIRE           784 ext/ereg/regex/regcomp.c 	REQUIRE(EATTWO('.', ']'), REG_ECOLLATE);