Merge tag 'v2.9.5' into maint-2.10

Git 2.9.5
This commit is contained in:
Junio C Hamano
2017-07-30 14:57:33 -07:00
9 changed files with 108 additions and 0 deletions

5
path.c
View File

@ -1225,6 +1225,11 @@ int is_ntfs_dotgit(const char *name)
}
}
int looks_like_command_line_option(const char *str)
{
return str && str[0] == '-';
}
char *xdg_config_home(const char *filename)
{
const char *home, *config_home;