commit, status: use status_printf{,_ln,_more} helpers
commit098d0e0e8e7467bea5306d5bc98b283bfe0174fb
authorJonathan Nieder <jrnieder@gmail.com>
Sat, 26 Feb 2011 05:11:37 +0000 (25 23:11 -0600)
committerJunio C Hamano <gitster@pobox.com>
Tue, 8 Mar 2011 20:10:03 +0000 (8 12:10 -0800)
treeb0b38cadba66aedecf86716c9973258a584d5500
parent3c624a30fa3f047d401e08cf019d39b3a79095ea
commit, status: use status_printf{,_ln,_more} helpers

wt-status code is used to provide a reminder of changes included and
not included for the commit message template opened in the operator's
text editor by "git commit".  Therefore each line of its output begins
with the comment character "#":

# Please enter the commit message for your changes. Lines starting

Use the new status_printf{,_ln,_more} functions to take care of adding
"#" to the beginning of such status lines automatically.  Using these
will have two advantages over the current code:

 - The obvious one is to force separation of the "#" from the
   translatable part of the message when git learns to translate its
   output.

 - Another advantage is that this makes it easier for us to drop "#"
   prefix in "git status" output in later versions of git if we want
   to.

Explained-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c
wt-status.c