git-remote-mediawiki: show progress information when getting last remote revision
[git.git] / config.c
index d28a499b0b66b9e96317ea8eba24b59fc2cf5d49..40818e872ffb61e725d63e0bbf1424ea8987009c 100644 (file)
--- a/config.c
+++ b/config.c
@@ -758,6 +758,11 @@ static int git_default_core_config(const char *var, const char *value)
                return 0;
        }
 
+       if (!strcmp(var, "core.precomposeunicode")) {
+               precomposed_unicode = git_config_bool(var, value);
+               return 0;
+       }
+
        /* Add other config variables here and to Documentation/config.txt. */
        return 0;
 }