diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-10-17 21:41:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-10-17 22:42:40 -0700 |
commit | 76141e2e6280101362c3c5ddb22699b6f0458100 (patch) | |
tree | 7d780fe891cc5680a5befaed7d16b20a67a14dc7 /revision.c | |
parent | e297cf5aff0264c16b6c325c0beab71bc04cd496 (diff) | |
download | git-76141e2e6280101362c3c5ddb22699b6f0458100.tar.gz |
format_note(): simplify API
We either stuff the notes message without modification for %N
userformat, or format it for human consumption. Using two bits
is an overkill that does not benefit anybody.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.c b/revision.c index a09e60bedb..ddfba11ca8 100644 --- a/revision.c +++ b/revision.c @@ -2236,7 +2236,7 @@ static int commit_match(struct commit *commit, struct rev_info *opt) if (!buf.len) strbuf_addstr(&buf, commit->buffer); format_display_notes(commit->object.sha1, &buf, - get_log_output_encoding(), 0); + get_log_output_encoding(), 1); } /* Find either in the commit object, or in the temporary */ |