| 2229 | |
| 2230 | #ifdef WITH_BREAKING_CHANGES |
| 2231 | static void check_auto_comment_char_config(struct repository *repo, |
| 2232 | struct comment_char_config *config) |
| 2233 | { |
| 2234 | if (!config->auto_set) |
| 2235 | return; |
| 2236 | |
| 2237 | die_message(_("Support for '%s=auto' has been removed in Git 3.0"), |
| 2238 | comment_key_name(config->last_key_id)); |
| 2239 | add_comment_char_advice(repo, config); |
| 2240 | die(NULL); |
| 2241 | } |
| 2242 | #else |
| 2243 | static void check_auto_comment_char_config(struct repository *repo, |
| 2244 | struct comment_char_config *config) |
no test coverage detected