Integrate with Sarathy; one conflict in t/pragma/warn/recgomp
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 7 Jul 1999 13:04:55 +0000 (13:04 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 7 Jul 1999 13:04:55 +0000 (13:04 +0000)
resolved manually.

p4raw-id: //depot/cfgperl@3648

1  2 
MANIFEST
pod/perldelta.pod
pod/perldiag.pod
pp.c
t/pragma/warn/regcomp
utf8.c

diff --cc MANIFEST
Simple merge
Simple merge
Simple merge
diff --cc pp.c
Simple merge
@@@ -29,21 -36,30 +33,16 @@@ Strange *+?{} on zero-length expressio
  # regcomp.c
  use warning 'unsafe' ;
  $_ = "" ;
 -/[a[:xyz:]b]/;
--/[a[.xyz.]b]/;
--/[a[=xyz=]b]/;
- EXPECT
- Character class syntax [. .] is reserved for future extensions at - line 4.
- Character class syntax [= =] is reserved for future extensions at - line 5.
- ########
- # regcomp.c
- use warning 'unsafe' ;
- $_ = "" ;
 +/[:foo:]/;
 +/[.bar.]/;
 +/[=zog=]/;
+ no warning 'unsafe' ;
 -/[a[:xyz:]b]/;
 -/[a[.xyz.]b]/;
 -/[a[=xyz=]b]/;
++/[a[:foo:]b]/;
++/[a[.bar.]b]/;
++/[a[=zog=]b]/;
  EXPECT
 -Character class syntax [: :] is reserved for future extensions at - line 4.
 +Character class syntax [: :] belongs inside character classes at - line 4.
 +Character class syntax [. .] belongs inside character classes at - line 5.
  Character class syntax [. .] is reserved for future extensions at - line 5.
 +Character class syntax [= =] belongs inside character classes at - line 6.
  Character class syntax [= =] is reserved for future extensions at - line 6.
 -########
 -# regcomp.c
 -use warning 'unsafe' ; 
 -# use utf8 ; # Note this line should be uncommented when utf8 gets fixed.
 -$_ = "" ;
 -/[a[:xyz:]b]/;
 -/[a[.xyz.]b]/;
 -/[a[=xyz=]b]/;
 -no warning 'unsafe' ;
 -/[a[:xyz:]b]/;
 -/[a[.xyz.]b]/;
 -/[a[=xyz=]b]/;
 -EXPECT
 -Character class syntax [: :] is reserved for future extensions at - line 5.
 -Character class syntax [. .] is reserved for future extensions at - line 6.
 -Character class syntax [= =] is reserved for future extensions at - line 7.
diff --cc utf8.c
Simple merge