diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-19 10:47:55 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-19 10:47:55 +0900 |
commit | c39da2c08ecc7f3186d83c4fc733401ee98df67f (patch) | |
tree | 67a532b9f4a891d70b5493df9d6e42d2631aea31 /Documentation | |
parent | Merge branch 'jk/system-path-cleanup' (diff) | |
parent | config: remove git_config_maybe_bool (diff) | |
download | tgif-c39da2c08ecc7f3186d83c4fc733401ee98df67f.tar.xz |
Merge branch 'ma/remove-config-maybe-bool'
Finishing touches to a recent topic.
* ma/remove-config-maybe-bool:
config: remove git_config_maybe_bool
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/technical/api-config.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Documentation/technical/api-config.txt b/Documentation/technical/api-config.txt index 7a83a3a6e2..9a778b0cad 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. |