[geany/geany] 48718f: Remove an unused parameter
Colomban Wendling
git-noreply at xxxxx
Fri Oct 31 19:25:59 UTC 2014
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Fri, 31 Oct 2014 19:25:59 UTC
Commit: 48718f4b792914ce206e5b423d4dfbf240bba4de
https://github.com/geany/geany/commit/48718f4b792914ce206e5b423d4dfbf240bba4de
Log Message:
-----------
Remove an unused parameter
Modified Paths:
--------------
tagmanager/src/tm_tag.c
Modified: tagmanager/src/tm_tag.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -1045,7 +1045,7 @@ static gpointer binary_search(gpointer key, gpointer base, size_t nmemb,
return NULL;
}
-static TMTag **tags_search(const GPtrArray *tags_array, TMTag *tag, gboolean partial,
+static TMTag **tags_search(const GPtrArray *tags_array, TMTag *tag,
gboolean tags_array_sorted, TMSortOptions *sort_options)
{
if (tags_array_sorted)
@@ -1097,7 +1097,7 @@ TMTag **tm_tags_find(const GPtrArray *tags_array, const char *name,
sort_options.sort_attrs = NULL;
sort_options.partial = partial;
- result = tags_search(tags_array, tag, partial, tags_array_sorted, &sort_options);
+ result = tags_search(tags_array, tag, tags_array_sorted, &sort_options);
/* There can be matches on both sides of result */
if (result)
{
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list