author | Pete Wyckoff <pw@padd.com> | |
Wed, 26 Nov 2008 18:52:15 +0000 (13:52 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 27 Nov 2008 21:17:58 +0000 (13:17 -0800) | ||
commit | 3d51c853df5730212f704a526340a5a059dffeda | |
tree | eb16f8ba2ef52cf549bdf5a9f132418e8400b864 | tree | snapshot |
parent | 5aa3bdd50d4e4f59c41ee6e70ae1e738a3a28cc0 | commit | diff |
git-p4: fix keyword-expansion regex
This text:
my $dir = $File::Find::dir;
return if ($dir !~ m,$options->{dirpat}$,);
was improperly converted to:
my $dir = $File$dir !~ m,$options->{dirpat}$,);
by the keyword identifier expansion code. Add a \n
to make sure the regex doesn't go across end-of-line
boundaries.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Acked-by: Simon Hausmann <simon@lst.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This text:
my $dir = $File::Find::dir;
return if ($dir !~ m,$options->{dirpat}$,);
was improperly converted to:
my $dir = $File$dir !~ m,$options->{dirpat}$,);
by the keyword identifier expansion code. Add a \n
to make sure the regex doesn't go across end-of-line
boundaries.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Acked-by: Simon Hausmann <simon@lst.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/fast-import/git-p4 | diff | blob | history |