From: =?UTF-8?q?Ond=C5=99ej=20Poho=C5=99elsk=C3=BD?= <opohorel@xxxxxxxxxx> Function 'escapeRefName' introduced in 51a7e6dbc9 has never been used. Despite being dead code, changes in Perl 5.41.4 exposed precedence warning withing its logic, which then caused test failures in t9402 by logging the warnings to stderr while parsing the code. The affected tests are t9402.30, t9402.31, t9402.32 and t9402.34. Remove this unused function to simplify the codebase and stop the warnings and test failures. Its corresponding unescapeRefName function, which remains in use, has had its comments updated. Reported-by: Jitka Plesnikova <jplesnik@xxxxxxxxxx> Signed-off-by: Ondřej Pohořelský <opohorel@xxxxxxxxxx> --- cvsserver: avoid precedence problem between ! and %s cc: "Kristoffer Haugsbakk" kristofferhaugsbakk@xxxxxxxxxxxx cc: "brian m. carlson" sandals@xxxxxxxxxxxxxxxxxxxx cc: Jeff King peff@xxxxxxxx cc: Todd Zullinger tmz@xxxxxxxxx cc: Matthew Ogilvie mmogilvi+git@xxxxxxxx Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1925%2Fopohorel%2Fcvsserver_parentheses-v4 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1925/opohorel/cvsserver_parentheses-v4 Pull-Request: https://github.com/gitgitgadget/git/pull/1925 Range-diff vs v3: 1: b7563182492 ! 1: ce853594ceb cvsserver: avoid precedence problem between ! and %s @@ Metadata Author: Ondřej Pohořelský <opohorel@xxxxxxxxxx> ## Commit message ## - cvsserver: avoid precedence problem between ! and %s + cvsserver: remove unused escapeRefName function - With perl-5.41.4 and newer, test t9402-git-cvsserver-refs.sh - (specifically t9402.30, t9402.31, t9402.32, t9402.34) fails, because - of the new warnings[0] populating cvs.log. + Function 'escapeRefName' introduced in 51a7e6dbc9 has never been used. - Use the 'does not match' operator '!~' directly to express the - negated pattern match, resolving the precedence issue. + Despite being dead code, changes in Perl 5.41.4 exposed precedence + warning withing its logic, which then caused test failures in t9402 by + logging the warnings to stderr while parsing the code. The affected + tests are t9402.30, t9402.31, t9402.32 and t9402.34. - [0] https://metacpan.org/release/ETHER/perl-5.41.12/view/pod/perl5414delta.pod#New-Warnings + Remove this unused function to simplify the codebase and stop the + warnings and test failures. Its corresponding unescapeRefName function, + which remains in use, has had its comments updated. Reported-by: Jitka Plesnikova <jplesnik@xxxxxxxxxx> - Suggested-by: Jitka Plesnikova <jplesnik@xxxxxxxxxx> Signed-off-by: Ondřej Pohořelský <opohorel@xxxxxxxxxx> ## git-cvsserver.perl ## +@@ git-cvsserver.perl: sub gethistorydense + return $result; + } + +-=head2 escapeRefName ++=head2 unescapeRefName + +-Apply an escape mechanism to compensate for characters that ++Undo an escape mechanism to compensate for characters that + git ref names can have that CVS tags can not. + + =cut +-sub escapeRefName ++sub unescapeRefName + { + my($self,$refName)=@_; + @@ git-cvsserver.perl: sub escapeRefName # = "_-xx-" Where "xx" is the hexadecimal representation of the # desired ASCII character byte. (for anything else) - if(! $refName=~/^[1-9][0-9]*(\.[1-9][0-9]*)*$/) -+ if ($refName !~ /^[1-9][0-9]*(\.[1-9][0-9]*)*$/) - { - $refName=~s/_-/_-u--/g; - $refName=~s/\./_-p-/g; +- { +- $refName=~s/_-/_-u--/g; +- $refName=~s/\./_-p-/g; +- $refName=~s%/%_-s-%g; +- $refName=~s/[^-_a-zA-Z0-9]/sprintf("_-%02x-",$1)/eg; +- } +-} +- +-=head2 unescapeRefName +- +-Undo an escape mechanism to compensate for characters that +-git ref names can have that CVS tags can not. +- +-=cut +-sub unescapeRefName +-{ +- my($self,$refName)=@_; +- +- # see escapeRefName() for description of escape mechanism. +- + $refName=~s/_-([spu]|[0-9a-f][0-9a-f])-/unescapeRefNameChar($1)/eg; + + # allowed tag names git-cvsserver.perl | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/git-cvsserver.perl b/git-cvsserver.perl index a4e1bad33ca..d8d5422cbca 100755 --- a/git-cvsserver.perl +++ b/git-cvsserver.perl @@ -4986,13 +4986,13 @@ sub gethistorydense return $result; } -=head2 escapeRefName +=head2 unescapeRefName -Apply an escape mechanism to compensate for characters that +Undo an escape mechanism to compensate for characters that git ref names can have that CVS tags can not. =cut -sub escapeRefName +sub unescapeRefName { my($self,$refName)=@_; @@ -5009,27 +5009,6 @@ sub escapeRefName # = "_-xx-" Where "xx" is the hexadecimal representation of the # desired ASCII character byte. (for anything else) - if(! $refName=~/^[1-9][0-9]*(\.[1-9][0-9]*)*$/) - { - $refName=~s/_-/_-u--/g; - $refName=~s/\./_-p-/g; - $refName=~s%/%_-s-%g; - $refName=~s/[^-_a-zA-Z0-9]/sprintf("_-%02x-",$1)/eg; - } -} - -=head2 unescapeRefName - -Undo an escape mechanism to compensate for characters that -git ref names can have that CVS tags can not. - -=cut -sub unescapeRefName -{ - my($self,$refName)=@_; - - # see escapeRefName() for description of escape mechanism. - $refName=~s/_-([spu]|[0-9a-f][0-9a-f])-/unescapeRefNameChar($1)/eg; # allowed tag names base-commit: cb96e1697ad6e54d11fc920c95f82977f8e438f8 -- gitgitgadget