diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-05-14 11:42:34 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-14 11:42:34 -0700 |
commit | ea8c6761e3605d18a438efea37660fd7a8ad0ce6 (patch) | |
tree | be1b9ed5bdf7f0630d07f7b564402345d1186a56 /log-tree.c | |
parent | a912913e864ea67f4544d3fb4d52e20bd3a6075e (diff) | |
parent | fafd38299bb6ff5634de89bcca35f622005d0279 (diff) | |
download | git-ea8c6761e3605d18a438efea37660fd7a8ad0ce6.tar.gz |
Merge branch 'jk/maint-tformat-with-z' into maint
By Jan Krüger (1) and Junio C Hamano (1)
* jk/maint-tformat-with-z:
log-tree: the previous one is still not quite right
log-tree: use custom line terminator in line termination mode
Diffstat (limited to 'log-tree.c')
-rw-r--r-- | log-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log-tree.c b/log-tree.c index 34c49e7b33..44f0268372 100644 --- a/log-tree.c +++ b/log-tree.c @@ -682,7 +682,7 @@ void show_log(struct rev_info *opt) if (opt->use_terminator) { if (!opt->missing_newline) graph_show_padding(opt->graph); - putchar('\n'); + putchar(opt->diffopt.line_termination); } strbuf_release(&msgbuf); |