aboutsummaryrefslogtreecommitdiff
path: root/Documentation/technical
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2017-09-05 20:39:59 +0200
committerJunio C Hamano <gitster@pobox.com>2017-09-07 09:48:20 +0900
commitd389028695940f74c62e2d8207432feb96f4262a (patch)
treed163085b6570315331de6f962d7b53e22d990b1b /Documentation/technical
parentbdfcdefd2f0587873436c950dd7a0798d313eb34 (diff)
downloadgit-d389028695940f74c62e2d8207432feb96f4262a.tar.gz
git-d389028695940f74c62e2d8207432feb96f4262a.tar.xz
config: remove git_config_maybe_bool
The function was deprecated in commit 89576613 ("treewide: deprecate git_config_maybe_bool, use git_parse_maybe_bool", 2017-08-07) and has no users. Signed-off-by: Martin Ågren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/technical')
-rw-r--r--Documentation/technical/api-config.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/Documentation/technical/api-config.txt b/Documentation/technical/api-config.txt
index 7a83a3a6e..9a778b0ca 100644
--- a/Documentation/technical/api-config.txt
+++ b/Documentation/technical/api-config.txt
@@ -186,10 +186,6 @@ parsing is successful, the return value is the result.
Same as `git_config_bool`, except that integers are returned as-is, and
an `is_bool` flag is unset.
-`git_config_maybe_bool`::
-Deprecated. Use `git_parse_maybe_bool` instead. They are exactly the
-same, except this function takes an unused argument `name`.
-
`git_parse_maybe_bool`::
Same as `git_config_bool`, except that it returns -1 on error rather
than dying.