| 731 | } |
| 732 | |
| 733 | static struct line_log_data *lookup_line_range(struct rev_info *revs, |
| 734 | struct commit *commit) |
| 735 | { |
| 736 | struct line_log_data *ret = NULL; |
| 737 | struct line_log_data *d; |
| 738 | |
| 739 | ret = lookup_decoration(&revs->line_log_data, &commit->object); |
| 740 | |
| 741 | for (d = ret; d; d = d->next) |
| 742 | range_set_check_invariants(&d->ranges); |
| 743 | |
| 744 | return ret; |
| 745 | } |
| 746 | |
| 747 | static int same_paths_in_pathspec_and_range(struct pathspec *pathspec, |
| 748 | struct line_log_data *range) |
no test coverage detected