| 721 | } |
| 722 | |
| 723 | static void clear_commit_line_range(struct rev_info *revs, struct commit *commit) |
| 724 | { |
| 725 | struct line_log_data *r; |
| 726 | r = lookup_decoration(&revs->line_log_data, &commit->object); |
| 727 | if (!r) |
| 728 | return; |
| 729 | free_line_log_data(r); |
| 730 | add_decoration(&revs->line_log_data, &commit->object, NULL); |
| 731 | } |
| 732 | |
| 733 | static struct line_log_data *lookup_line_range(struct rev_info *revs, |
| 734 | struct commit *commit) |
no test coverage detected