diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-03-28 13:52:27 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-28 13:52:28 -0700 |
commit | fb0ab976c6ffcea3b7b15dd668c6cac2e4e3bdc9 (patch) | |
tree | e7ad47f441d89a8d715fa666e07d1468cfabc8b6 /builtin/shortlog.c | |
parent | Merge branch 'rs/path-name-safety-cleanup' into maint (diff) | |
parent | shortlog: don't set after_subject to an empty string (diff) | |
download | tgif-fb0ab976c6ffcea3b7b15dd668c6cac2e4e3bdc9.tar.xz |
Merge branch 'rs/shortlog-cleanup' into maint
Code clean-up.
* rs/shortlog-cleanup:
shortlog: don't set after_subject to an empty string
Diffstat (limited to 'builtin/shortlog.c')
-rw-r--r-- | builtin/shortlog.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/shortlog.c b/builtin/shortlog.c index c9585d475d..677f372083 100644 --- a/builtin/shortlog.c +++ b/builtin/shortlog.c @@ -149,7 +149,6 @@ void shortlog_add_commit(struct shortlog *log, struct commit *commit) ctx.fmt = CMIT_FMT_USERFORMAT; ctx.abbrev = log->abbrev; ctx.subject = ""; - ctx.after_subject = ""; ctx.date_mode.type = DATE_NORMAL; ctx.output_encoding = get_log_output_encoding(); |