[geany/geany] 13a7fb: Don't sort tags file list since the order doesn't matter
Colomban Wendling
git-noreply at xxxxx
Thu May 31 19:58:14 UTC 2012
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Thu, 31 May 2012 19:58:14
Commit: 13a7fb521e5a5d78f3a50a83ad6fa0eaacad2e6b
https://github.com/geany/geany/commit/13a7fb521e5a5d78f3a50a83ad6fa0eaacad2e6b
Log Message:
-----------
Don't sort tags file list since the order doesn't matter
Modified Paths:
--------------
src/symbols.c
Modified: src/symbols.c
4 files changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -1842,10 +1842,10 @@ static void init_user_tags(void)
{
utils_mkdir(dir, FALSE);
}
- file_list = utils_get_file_list_full(dir, TRUE, TRUE, NULL);
+ file_list = utils_get_file_list_full(dir, TRUE, FALSE, NULL);
SETPTR(dir, g_build_filename(app->datadir, "tags", NULL));
- list = utils_get_file_list_full(dir, TRUE, TRUE, NULL);
+ list = utils_get_file_list_full(dir, TRUE, FALSE, NULL);
g_free(dir);
file_list = g_slist_concat(file_list, list);
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
More information about the Commits
mailing list