[geany/geany] b95980: Rename append_to_temp_file() to combine_include_files()

Jiří Techet git-noreply at xxxxx
Fri Jun 10 21:57:35 UTC 2016


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Fri, 06 May 2016 19:56:47 UTC
Commit:      b959801d8f03e83bf58333f047f8314ec2e401c7
             https://github.com/geany/geany/commit/b959801d8f03e83bf58333f047f8314ec2e401c7

Log Message:
-----------
Rename append_to_temp_file() to combine_include_files()


Modified Paths:
--------------
    tagmanager/src/tm_workspace.c

Modified: tagmanager/src/tm_workspace.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -421,7 +421,7 @@ static gboolean write_includes_file(const gchar *outf, GList *includes_files)
 }
 
 
-static gboolean append_to_temp_file(const gchar *outf, GList *file_list)
+static gboolean combine_include_files(const gchar *outf, GList *file_list)
 {
 	FILE *fp = g_fopen(outf, "w");
 	GList *node = file_list;
@@ -623,7 +623,7 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
 	if (pre_process)
 		ret = write_includes_file(temp_file, includes_files);
 	else
-		ret = append_to_temp_file(temp_file, includes_files);
+		ret = combine_include_files(temp_file, includes_files);
 
 	g_list_free_full(includes_files, g_free);
 	if (!ret)



--------------
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