mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
advice: omit trailing whitespace
Git tools all consistently encourage users to avoid whitespaces at the end of line by giving them features like "git diff --check" and "git am --whitespace=fix". Make sure that the advice messages we give users avoid trailing whitespaces. We shouldn't be wasting vertical screen real estate by adding blank lines in advice messages that are supposed to be concise hints, but as long as we write such blank line in our "hints", we should do it right. A test that expects the current behaviour of leaving trailing whitespaces has been adjusted. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
3
advice.c
3
advice.c
@@ -104,8 +104,9 @@ static void vadvise(const char *advice, int display_instructions,
|
||||
|
||||
for (cp = buf.buf; *cp; cp = np) {
|
||||
np = strchrnul(cp, '\n');
|
||||
fprintf(stderr, _("%shint: %.*s%s\n"),
|
||||
fprintf(stderr, _("%shint:%s%.*s%s\n"),
|
||||
advise_get_color(ADVICE_COLOR_HINT),
|
||||
(np == cp) ? "" : " ",
|
||||
(int)(np - cp), cp,
|
||||
advise_get_color(ADVICE_COLOR_RESET));
|
||||
if (*np)
|
||||
|
||||
Reference in New Issue
Block a user