| 2266 | #endif /* WITH_BREAKING_CHANGES */ |
| 2267 | |
| 2268 | static void check_deprecated_config(struct repo_config *config) |
| 2269 | { |
| 2270 | if (!config->repo->check_deprecated_config) |
| 2271 | return; |
| 2272 | |
| 2273 | check_auto_comment_char_config(config->repo, |
| 2274 | &config->comment_char_config); |
| 2275 | } |
| 2276 | |
| 2277 | static int repo_config_callback(const char *key, const char *value, |
| 2278 | const struct config_context *ctx, void *data) |
no test coverage detected