Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git on Mac OS and precomposed unicode
[gitweb.git]
/
config.c
diff --git
a/config.c
b/config.c
index 71ef171cab78bfdb9d6421f2a2b84acbce0bfc00..eaef3b644375545f9c8e49c460132141269394a9 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;
}