Hi,
Ævar Arnfjörð Bjarmason wrote:
quoted hunk ↗ jump to hunk
+++ b/git-am.sh
@@ -778,7 +778,7 @@ did you forget to use 'git add'?"; echo
fi
if test $apply_status != 0
then
- printf 'Patch failed at %s %s\n' "$msgnum" "$FIRSTLINE"
+ echo "$(eval_gettext "Patch failed at \$msgnum \$FIRSTLINE")"
Probably I am missing something silly, but why not just:
eval_gettext 'Patch failed at $msgnum $FIRSTLINE\n'
? I ask because it is nice to be able to avoid "echo" with arbitrary
data: special characters (e.g. \) can make for portability hassles.
Jonathan