| 1340 | } |
| 1341 | |
| 1342 | void format_display_notes(const struct object_id *object_oid, |
| 1343 | struct strbuf *sb, const char *output_encoding, int raw) |
| 1344 | { |
| 1345 | int i; |
| 1346 | assert(display_notes_trees); |
| 1347 | for (i = 0; display_notes_trees[i]; i++) |
| 1348 | format_note(display_notes_trees[i], object_oid, sb, |
| 1349 | output_encoding, raw); |
| 1350 | } |
| 1351 | |
| 1352 | int copy_note(struct notes_tree *t, |
| 1353 | const struct object_id *from_obj, const struct object_id *to_obj, |
no test coverage detected