about summary refs log tree commit diff
path: root/Util
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2002-04-18 14:35:17 +0000
committerBart Schaefer <barts@users.sourceforge.net>2002-04-18 14:35:17 +0000
commit38d555e1d71c16198f8f5054ea4c5433502f2ba1 (patch)
tree18537874d2e9255d2fd205ebc4f53e939d31e2d0 /Util
parent2a55dc74ef3037694ba75da801f0d801605499f0 (diff)
downloadzsh-38d555e1d71c16198f8f5054ea4c5433502f2ba1.tar.gz
zsh-38d555e1d71c16198f8f5054ea4c5433502f2ba1.tar.xz
zsh-38d555e1d71c16198f8f5054ea4c5433502f2ba1.zip
Stupid typo -- :? should be ?:
Diffstat (limited to 'Util')
-rw-r--r--Util/difflog.pl2
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);