diff options
author | Chris Mayo | 2019-05-26 17:57:01 +0100 |
---|---|---|
committer | June McEnroe | 2022-02-13 11:53:33 -0500 |
commit | 298f7d15f83fde9b85ec0235e5021558243eb705 (patch) | |
tree | 25008327bdf90e9e413ac1dda83996eed514059a | |
parent | Add "this commit" option to switch form (diff) | |
download | cgit-298f7d15f83fde9b85ec0235e5021558243eb705.tar.gz cgit-298f7d15f83fde9b85ec0235e5021558243eb705.zip |
Use git raw note format
Currently a commit note is shown as: Notes Notes: <note text> Change to: Notes <note text> Signed-off-by: Chris Mayo <aklhfex at gmail.com>
-rw-r--r-- | ui-commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-commit.c b/ui-commit.c index 7e6b5a0..7d87c0a 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -39,7 +39,7 @@ void cgit_print_commit(char *hex, const char *prefix) | |||
39 | } | 39 | } |
40 | info = cgit_parse_commit(commit); | 40 | info = cgit_parse_commit(commit); |
41 | 41 | ||
42 | format_display_notes(&oid, ¬es, PAGE_ENCODING, 0); | 42 | format_display_notes(&oid, ¬es, PAGE_ENCODING, 1); |
43 | 43 | ||
44 | load_ref_decorations(NULL, DECORATE_FULL_REFS); | 44 | load_ref_decorations(NULL, DECORATE_FULL_REFS); |
45 | 45 | ||