diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-05-25 20:19:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-25 20:29:07 -0700 |
commit | 48ded91674604c9756d53a7e657da0196795136f (patch) | |
tree | ad68b98c2e441a63355d2b5368e7fb9fa6535852 /pretty.c | |
parent | 37869f40a817d4bf81f05cc62d9d39db7a3dc161 (diff) | |
download | git-48ded91674604c9756d53a7e657da0196795136f.tar.gz git-48ded91674604c9756d53a7e657da0196795136f.tar.xz |
log --pretty: do not accept bogus "--prettyshort"
... nor bogus "format.pretty = '=short'". Both are syntax errors.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -28,8 +28,6 @@ void get_commit_format(const char *arg, struct rev_info *rev) rev->commit_format = CMIT_FMT_DEFAULT; return; } - if (*arg == '=') - arg++; if (!prefixcmp(arg, "format:") || !prefixcmp(arg, "tformat:")) { const char *cp = strchr(arg, ':') + 1; free(user_format); |