| 321 | } |
| 322 | |
| 323 | static int get_colopts(const char *var, const char *value, |
| 324 | const struct config_context *ctx UNUSED, void *data) |
| 325 | { |
| 326 | unsigned int *colopts = data; |
| 327 | |
| 328 | if (starts_with(var, "column.")) |
| 329 | return git_column_config(var, value, "help", colopts); |
| 330 | |
| 331 | return 0; |
| 332 | } |
| 333 | |
| 334 | void list_commands(struct cmdnames *main_cmds, struct cmdnames *other_cmds) |
| 335 | { |
nothing calls this directly
no test coverage detected