Skip to content

Commit 3d51c85

Browse files
Pete Wyckoffgitster
authored andcommitted
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 <[email protected]> Acked-by: Simon Hausmann <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5aa3bdd commit 3d51c85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/fast-import/git-p4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ class P4Sync(Command):
963963
if stat['type'] in ('text+ko', 'unicode+ko', 'binary+ko'):
964964
text = re.sub(r'(?i)\$(Id|Header):[^$]*\$',r'$\1$', text)
965965
elif stat['type'] in ('text+k', 'ktext', 'kxtext', 'unicode+k', 'binary+k'):
966-
text = re.sub(r'\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$]*\$',r'$\1$', text)
966+
text = re.sub(r'\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$\n]*\$',r'$\1$', text)
967967

968968
contents[stat['depotFile']] = text
969969

0 commit comments

Comments
 (0)