diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2002-04-18 14:35:17 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2002-04-18 14:35:17 +0000 |
commit | 38d555e1d71c16198f8f5054ea4c5433502f2ba1 (patch) | |
tree | 18537874d2e9255d2fd205ebc4f53e939d31e2d0 /Util/difflog.pl | |
parent | 2a55dc74ef3037694ba75da801f0d801605499f0 (diff) | |
download | zsh-38d555e1d71c16198f8f5054ea4c5433502f2ba1.tar.gz zsh-38d555e1d71c16198f8f5054ea4c5433502f2ba1.tar.xz zsh-38d555e1d71c16198f8f5054ea4c5433502f2ba1.zip |
Stupid typo -- :? should be ?:
Diffstat (limited to 'Util/difflog.pl')
-rw-r--r-- | Util/difflog.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Util/difflog.pl b/Util/difflog.pl index d27489cd3..9872ded69 100644 --- a/Util/difflog.pl +++ b/Util/difflog.pl @@ -11,7 +11,7 @@ my $newfn = pop(@ARGV); my $oldfn = pop(@ARGV); my (%oldhash, %newhash); -my $article = q[(:?(:?workers?|users?)/)?\d{4,5}]; +my $article = q[(?:(?:workers?|users?)/)?\d{4,5}]; read_file($newfn, \%newhash); read_file($oldfn, \%oldhash); |