summaryrefslogtreecommitdiff
path: root/Documentation/technical
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-04-06 21:50:46 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-04-06 21:50:46 (GMT)
commitae722b4e2796522261b0f130eb86b665499625e6 (patch)
tree95dc131c0b1e306b7f1206f1ea3e179547290171 /Documentation/technical
parent3f3f8d9d09cdb6810e848d82583749e6080d2167 (diff)
parent63e671508782ca2dd386e5878d3682090fd64eda (diff)
downloadgit-ae722b4e2796522261b0f130eb86b665499625e6.zip
git-ae722b4e2796522261b0f130eb86b665499625e6.tar.gz
git-ae722b4e2796522261b0f130eb86b665499625e6.tar.bz2
Merge branch 'sb/fmt-merge-msg'
* sb/fmt-merge-msg: fmt-merge-msg: hide summary option fmt-merge-msg: remove custom string_list implementation string-list: add unsorted_string_list_lookup() fmt-merge-msg: use pretty.c routines t6200: test fmt-merge-msg more t6200: modernize with test_tick fmt-merge-msg: be quiet if nothing to merge
Diffstat (limited to 'Documentation/technical')
-rw-r--r--Documentation/technical/api-string-list.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/technical/api-string-list.txt b/Documentation/technical/api-string-list.txt
index 293bb15..6d8c24b 100644
--- a/Documentation/technical/api-string-list.txt
+++ b/Documentation/technical/api-string-list.txt
@@ -104,8 +104,12 @@ write `string_list_insert(...)->util = ...;`.
`unsorted_string_list_has_string`::
It's like `string_list_has_string()` but for unsorted lists.
+
+`unsorted_string_list_lookup`::
+
+ It's like `string_list_lookup()` but for unsorted lists.
+
-This function needs to look through all items, as opposed to its
+The above two functions need to look through all items, as opposed to their
counterpart for sorted lists, which performs a binary search.
Data structures