log-tree: use custom line terminator in line termination mode
When using a custom format in line termination mode (as opposed to line separation mode), the configured line terminator is not used, so things like "git log --pretty=tformat:%H -z" do not work properly. Make it use the line terminator the user ordered. Signed-off-by: Jan Krüger <jk@jk.gs> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
f174a2583c
commit
3e065308ca
@ -513,7 +513,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);
|
||||
|
Reference in New Issue
Block a user