]> git.ipfire.org Git - thirdparty/git.git/commit
commit, status: use status_printf{,_ln,_more} helpers
authorJonathan Nieder <jrnieder@gmail.com>
Sat, 26 Feb 2011 05:11:37 +0000 (23:11 -0600)
committerJunio C Hamano <gitster@pobox.com>
Tue, 8 Mar 2011 20:12:43 +0000 (12:12 -0800)
commitb926c0d10df6c5bdc8bf9a2fc1431e8edb673e4d
treeb0b38cadba66aedecf86716c9973258a584d5500
parent37f3012ff2a1a23dc7f8d390fde959d292fcc4e8
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