diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-16 12:18:55 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-16 12:18:55 -0700 |
commit | c6d3abbf994aaef6c56512f2afe2236310e08e39 (patch) | |
tree | 78caa8a86a2bb1b14c493e3f4b4caf9b483d2012 /Documentation/technical | |
parent | bbfa0cc7f8fdfb323ad108bb1dbb7543558cf864 (diff) | |
parent | acb3d22264fd3736f95f71aa38e1d6fa01f5e9e1 (diff) | |
download | git-c6d3abbf994aaef6c56512f2afe2236310e08e39.tar.gz |
Merge branch 'ta/string-list-init'
* ta/string-list-init:
string-list: spell all values out that are given to a string_list initializer
Diffstat (limited to 'Documentation/technical')
-rw-r--r-- | Documentation/technical/api-string-list.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/technical/api-string-list.txt b/Documentation/technical/api-string-list.txt index 20be348834..f1add51efe 100644 --- a/Documentation/technical/api-string-list.txt +++ b/Documentation/technical/api-string-list.txt @@ -200,3 +200,5 @@ Represents the list itself. You should not tamper with it. . Setting the `strdup_strings` member to 1 will strdup() the strings before adding them, see above. +. The `compare_strings_fn` member is used to specify a custom compare + function, otherwise `strcmp()` is used as the default function. |