| 757 | } |
| 758 | |
| 759 | static int graph_needs_pre_commit_line(struct git_graph *graph) |
| 760 | { |
| 761 | return graph->num_parents >= 3 && |
| 762 | graph->commit_index < (graph->num_columns - 1) && |
| 763 | graph->expansion_row < graph_num_expansion_rows(graph); |
| 764 | } |
| 765 | |
| 766 | void graph_update(struct git_graph *graph, struct commit *commit) |
| 767 | { |
no test coverage detected