Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Future-proof source for changes in xdemitconf_t
[gitweb.git]
/
config.c
diff --git
a/config.c
b/config.c
index 4de892633037620504575eaf018415e970c8efbd..561ee3b576ae32f10959d3f1b76f6cc62e31d45a 100644
(file)
--- a/
config.c
+++ b/
config.c
@@
-387,6
+387,11
@@
int git_default_config(const char *var, const char *value)
return 0;
}
+ if (!strcmp(var, "core.pager")) {
+ pager_program = xstrdup(value);
+ return 0;
+ }
+
/* Add other config variables here and to Documentation/config.txt. */
return 0;
}