| 1996 | } |
| 1997 | |
| 1998 | static int git_configset_get_pathname(struct config_set *set, const char *key, char **dest) |
| 1999 | { |
| 2000 | const char *value; |
| 2001 | if (!git_configset_get_value(set, key, &value, NULL)) |
| 2002 | return git_config_pathname(dest, key, value); |
| 2003 | else |
| 2004 | return 1; |
| 2005 | } |
| 2006 | |
| 2007 | struct comment_char_config { |
| 2008 | unsigned last_key_id; |
no test coverage detected