about summary refs log tree commit diff stats
path: root/ui-log.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-log.c')
-rw-r--r--ui-log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui-log.c b/ui-log.c index aaffb4e..8d8b235 100644 --- a/ui-log.c +++ b/ui-log.c
@@ -195,9 +195,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
195 strbuf_addstr(&msgbuf, info->msg); 195 strbuf_addstr(&msgbuf, info->msg);
196 strbuf_addch(&msgbuf, '\n'); 196 strbuf_addch(&msgbuf, '\n');
197 } 197 }
198 format_note(NULL, commit->object.sha1, &msgbuf, 198 format_display_notes(commit->object.sha1,
199 PAGE_ENCODING, 199 &msgbuf, PAGE_ENCODING, 0);
200 NOTES_SHOW_HEADER | NOTES_INDENT);
201 strbuf_addch(&msgbuf, '\n'); 200 strbuf_addch(&msgbuf, '\n');
202 strbuf_ltrim(&msgbuf); 201 strbuf_ltrim(&msgbuf);
203 } 202 }
@@ -397,6 +396,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
397 commit->parents = NULL; 396 commit->parents = NULL;
398 } 397 }
399 398
399 init_display_notes(NULL);
400 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) { 400 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) {
401 print_commit(commit, &rev); 401 print_commit(commit, &rev);
402 free(commit->buffer); 402 free(commit->buffer);