diff options
author | Brandon Williams <bmwill@google.com> | 2017-08-03 11:19:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-03 13:11:01 -0700 |
commit | 1b796ace7b5566d7cd2ed2ee56d3e5b1f7605272 (patch) | |
tree | f42ceacf4c2ffd03a6beeb2513684a7efc936a77 /builtin/ls-files.c | |
parent | 32bc548329d20d33fb25973d76440eccd260c433 (diff) | |
download | git-1b796ace7b5566d7cd2ed2ee56d3e5b1f7605272.tar.gz |
submodule-config: move submodule-config functions to submodule-config.c
Migrate the functions used to initialize the submodule-config to
submodule-config.c so that the callback routine used in the
initialization process can be static and prevent it from being used
outside of initializing the submodule-config through the main API.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/ls-files.c')
-rw-r--r-- | builtin/ls-files.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/ls-files.c b/builtin/ls-files.c index b8514a0029..d14612057e 100644 --- a/builtin/ls-files.c +++ b/builtin/ls-files.c @@ -19,6 +19,7 @@ #include "pathspec.h" #include "run-command.h" #include "submodule.h" +#include "submodule-config.h" static int abbrev; static int show_deleted; |