diff options
author | Larry Wall <lwall@netlabs.com> | 1991-04-11 20:32:32 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1991-04-11 20:32:32 +0000 |
commit | 35c8bce761056f470189967ccc824e04467151df (patch) | |
tree | 9ee76bba81900f86af5a1070bdd69d3987201c52 /regcomp.c | |
parent | 1c3d792e8fc9c2a36edfbd6c01156ef7e635040f (diff) | |
download | perl-35c8bce761056f470189967ccc824e04467151df.tar.gz |
perl 4.0 patch 2: Patch 1 continued
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -7,9 +7,12 @@ * blame Henry for some of the lack of readability. */ -/* $Header: regcomp.c,v 4.0 91/03/20 01:39:01 lwall Locked $ +/* $RCSfile: regcomp.c,v $$Revision: 4.0.1.1 $$Date: 91/04/12 09:04:45 $ * * $Log: regcomp.c,v $ + * Revision 4.0.1.1 91/04/12 09:04:45 lwall + * patch1: random cleanup in cpp namespace + * * Revision 4.0 91/03/20 01:39:01 lwall * 4.0 baseline. * @@ -70,6 +73,9 @@ ((*s) == '{' && regcurly(s))) #define META "^$.[()|?+*\\" +#ifdef SPSTART +#undef SPSTART /* dratted cpp namespace... */ +#endif /* * Flags to be passed up and down. */ |