diff options
author | Salvador FandiƱo <sfandino@yahoo.com> | 2003-02-18 19:24:13 +0000 |
---|---|---|
committer | hv <hv@crypt.org> | 2003-02-19 00:53:03 +0000 |
commit | 8c63d93843745ff8766bc75490d35dc2b080c5c0 (patch) | |
tree | 2ddbe7e80c6bed98ba5d4043cfe0666b673290df /lib/assertions | |
parent | f7047380cf724d6ba2d3de39f9bed88ffab64608 (diff) | |
download | perl-8c63d93843745ff8766bc75490d35dc2b080c5c0.tar.gz |
more complex assertions activation:
Subject: Re: Did the assertion patch/feature submission get overlooked?
Message-ID: <3E52885D.5060903@yahoo.com>
p4raw-id: //depot/perl@18750
Diffstat (limited to 'lib/assertions')
-rw-r--r-- | lib/assertions/activate.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/assertions/activate.pm b/lib/assertions/activate.pm index 6f0f37ec03..f3abd1e380 100644 --- a/lib/assertions/activate.pm +++ b/lib/assertions/activate.pm @@ -7,6 +7,7 @@ our $VERSION = '0.01'; sub import { shift; + @_='.*' unless @_; push @{^ASSERTING}, ( map { qr/^$_$/ } @_) ; } |