X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=config.c;h=253c48a6130a9268c106170df7205441d4ab36ac;hb=935e714204fe167aa6172a733e7131ee5b4577f4;hp=7ea8a7369a316c5a74266d891e9173a5926a8c53;hpb=dafc88b136b508c1c08129b756b6ba23b7c9d341;p=git.git diff --git a/config.c b/config.c index 7ea8a736..253c48a6 100644 --- a/config.c +++ b/config.c @@ -60,6 +60,12 @@ static char *parse_value(void) space = 1; continue; } + if (!quote) { + if (c == ';' || c == '#') { + comment = 1; + continue; + } + } if (space) { if (len) value[len++] = ' '; @@ -93,12 +99,6 @@ static char *parse_value(void) quote = 1-quote; continue; } - if (!quote) { - if (c == ';' || c == '#') { - comment = 1; - continue; - } - } value[len++] = c; } } @@ -252,7 +252,7 @@ int git_default_config(const char *var, const char *value) return 0; } - /* Add other config variables here.. */ + /* Add other config variables here and to Documentation/config.txt. */ return 0; }