summaryrefslogtreecommitdiff
path: root/git-cvsimport.perl
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2015-06-25 11:08:08 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2015-06-25 11:08:08 -0700
commitc82b6d3f4ba871ef65e25f9c336eb7c46f92e367 (patch)
tree1e5287fbeed2397ceccc13dad6ad3ad5a6ecd106 /git-cvsimport.perl
parentMerge branch 'cb/array-size' (diff)
parentcvsimport: silence regex warning appearing in Perl 5.22. (diff)
downloadtgif-c82b6d3f4ba871ef65e25f9c336eb7c46f92e367.tar.xz
Merge branch 'cn/cvsimport-perl-update'
* cn/cvsimport-perl-update: cvsimport: silence regex warning appearing in Perl 5.22.
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-xgit-cvsimport.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl
index 82ecb0343a..1e4e65a45d 100755
--- a/git-cvsimport.perl
+++ b/git-cvsimport.perl
@@ -921,7 +921,7 @@ sub commit {
# (See check_refname_component in refs.c.)
1 while $xtag =~ s/
(?: \.\. # Tag cannot contain '..'.
- | \@{ # Tag cannot contain '@{'.
+ | \@\{ # Tag cannot contain '@{'.
| ^ - # Tag cannot begin with '-'.
| \.lock $ # Tag cannot end with '.lock'.
| ^ \. # Tag cannot begin...