From: Mark-Jason Dominus Date: Tue, 16 Jan 2001 14:43:18 +0000 (+0000) Subject: regcomp.c old feature removal X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f6e681c80d37390847118575795f2cc6a2e69c87;p=p5sagit%2Fp5-mst-13.2.git regcomp.c old feature removal Message-ID: <20010116144318.7140.qmail@plover.com> p4raw-id: //depot/perl@8455 --- diff --git a/regcomp.c b/regcomp.c index c85eb5e..96a2789 100644 --- a/regcomp.c +++ b/regcomp.c @@ -154,11 +154,6 @@ typedef struct RExC_state_t { #define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?') #define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \ ((*s) == '{' && regcurly(s))) -#ifdef atarist -#define PERL_META "^$.[()|?+*\\" -#else -#define META "^$.[()|?+*\\" -#endif #ifdef SPSTART #undef SPSTART /* dratted cpp namespace... */