From: Ævar Arnfjörð Bjarmason Date: Fri, 28 May 2021 09:23:47 +0000 (+0200) Subject: send-email: use function syntax instead of barewords X-Git-Tag: v2.33.0-rc0~33^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4adbf387bfd4b03b838282757e0bdf67e8f9fc8d;p=thirdparty%2Fgit.git send-email: use function syntax instead of barewords Change calls like "__ 'foo'" to "__('foo')" so the Perl compiler doesn't have to guess that "__" is a function. This makes the code more readable. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index 38408ec75a..44dc3f6eb1 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -706,7 +706,7 @@ sub is_format_patch_arg { if (defined($format_patch)) { return $format_patch; } - die sprintf(__ <