| 885 | |
| 886 | |
| 887 | static void graph_output_skip_line(struct git_graph *graph, struct graph_line *line) |
| 888 | { |
| 889 | /* |
| 890 | * Output an ellipsis to indicate that a portion |
| 891 | * of the graph is missing. |
| 892 | */ |
| 893 | graph_line_addstr(line, "..."); |
| 894 | |
| 895 | if (graph_needs_pre_commit_line(graph)) |
| 896 | graph_update_state(graph, GRAPH_PRE_COMMIT); |
| 897 | else |
| 898 | graph_update_state(graph, GRAPH_COMMIT); |
| 899 | } |
| 900 | |
| 901 | static void graph_output_pre_commit_line(struct git_graph *graph, |
| 902 | struct graph_line *line) |
no test coverage detected