diff options
author | Stefan Beller <sbeller@google.com> | 2018-08-13 18:41:17 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-14 14:03:05 -0700 |
commit | 84120cca09002453649abf40e1873c4041247d64 (patch) | |
tree | df6ac2bde7bf5703658277c0a91a7bcdf81f267d | |
parent | t3206: add color test for range-diff --dual-color (diff) | |
download | tgif-84120cca09002453649abf40e1873c4041247d64.tar.xz |
diff.c: simplify caller of emit_line_0
Due to the previous condition we know "set_sign != NULL" at that point.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | diff.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1202,8 +1202,7 @@ static void emit_line_ws_markup(struct diff_options *o, emit_line_0(o, set, 0, reset, sign, line, len); else if (!ws) { /* Emit just the prefix, then the rest. */ - emit_line_0(o, set_sign ? set_sign : set, !!set_sign, reset, - sign, "", 0); + emit_line_0(o, set_sign, !!set_sign, reset, sign, "", 0); emit_line_0(o, set, 0, reset, 0, line, len); } else if (blank_at_eof) /* Blank line at EOF - paint '+' as well */ |