diff options
| author | Junio C Hamano <gitster@pobox.com> | 2018-12-15 12:24:33 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-12-15 12:24:33 +0900 |
| commit | 916f56d38bc86cf8bed0698afde5051c05e7cc68 (patch) | |
| tree | 3a0d09409abaea41a184c712095913e305736e05 /help.h | |
| parent | bf29f074ed7019abb53398c4cd5659d9f939d9a8 (diff) | |
| parent | 1c4b985965a4c424e7e5ae4756e139c98183278d (diff) | |
| download | git-916f56d38bc86cf8bed0698afde5051c05e7cc68.tar.gz | |
Merge branch 'js/help-commands-verbose-by-default-fix' into maint
"git help -a" did not work well when an overly long alias is
defined, which has been corrected.
* js/help-commands-verbose-by-default-fix:
help -a: handle aliases with long names gracefully
help.h: fix coding style
Diffstat (limited to 'help.h')
| -rw-r--r-- | help.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ struct cmdnames { static inline void mput_char(char c, unsigned int num) { - while(num--) + while (num--) putchar(c); } |
