summaryrefslogtreecommitdiff
path: root/upload-pack.c
diff options
context:
space:
mode:
authorJon Seymour <jon.seymour@gmail.com>2011-08-07 11:58:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-08-08 19:02:16 (GMT)
commit3da5c54340d67b935b2ad75cc7d162c1e571a644 (patch)
treebc1a7b8f919612a091b4df8ad8d7bb2efc0f00a0 /upload-pack.c
parente7a85be3cfc4ee017f59f1d1f8ceb63d7c88c9c8 (diff)
downloadgit-3da5c54340d67b935b2ad75cc7d162c1e571a644.zip
git-3da5c54340d67b935b2ad75cc7d162c1e571a644.tar.gz
git-3da5c54340d67b935b2ad75cc7d162c1e571a644.tar.bz2
gettext: add gettextln, eval_gettextln to encode common idiom
Currently, if you want to use gettext or eval_gettext to format a message you may have to add a separate echo statement and a surrounding subshell in order to interpolate the required trailing new line. This patch introduces two new helper functions, gettextln and eval_gettextln which append a trailing newline to the gettext output. This allows constructions of the form: if test -s "$GIT_DIR/BISECT_START" then ( gettext "You need to give me at least one good and one bad revisions. (You can use \"git bisect bad\" and \"git bisect good\" for that.)" && echo ) >&2 else ... to be expressed more concisely as: if test -s "$GIT_DIR/BISECT_START" then gettextln "You need to give me at least one good and one bad revisions. (You can use \"git bisect bad\" and \"git bisect good\" for that.)" >&2 else ... Acked-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Jon Seymour <jon.seymour@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'upload-pack.c')
0 files changed, 0 insertions, 0 deletions