| 180 | } |
| 181 | |
| 182 | static struct cmt_fmt_map *find_commit_format(const char *sought) |
| 183 | { |
| 184 | if (!commit_formats) |
| 185 | setup_commit_formats(); |
| 186 | |
| 187 | return find_commit_format_recursive(sought, sought, 0); |
| 188 | } |
| 189 | |
| 190 | void get_commit_format(const char *arg, struct rev_info *rev) |
| 191 | { |
no test coverage detected