SF.net SVN: geany:[4631] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Jan 31 22:08:58 UTC 2010


Revision: 4631
          http://geany.svn.sourceforge.net/geany/?rev=4631&view=rev
Author:   eht16
Date:     2010-01-31 22:08:58 +0000 (Sun, 31 Jan 2010)

Log Message:
-----------
Use utils_spawn_sync() instead of g_spawn_sync().

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/templates.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-01-31 21:54:47 UTC (rev 4630)
+++ trunk/ChangeLog	2010-01-31 22:08:58 UTC (rev 4631)
@@ -6,6 +6,8 @@
    Fix 'make distcheck' by removing data/latex.tags from EXTRA_DIST.
  * scripts/create_py_tags.py:
    Make the script a bit more robust with newer Python versions.
+ * src/templates.c:
+   Use utils_spawn_sync() instead of g_spawn_sync().
 
 
 2010-01-31  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>

Modified: trunk/src/templates.c
===================================================================
--- trunk/src/templates.c	2010-01-31 21:54:47 UTC (rev 4630)
+++ trunk/src/templates.c	2010-01-31 22:08:58 UTC (rev 4631)
@@ -758,7 +758,7 @@
 			"GEANY_FILETYPE", file_type,
 			"GEANY_FUNCNAME", func_name,
 			NULL);
-		if (! g_spawn_sync(NULL, argv, env, G_SPAWN_SEARCH_PATH,
+		if (! utils_spawn_sync(NULL, argv, env, G_SPAWN_SEARCH_PATH,
 				NULL, NULL, &result, NULL, NULL, &error))
 		{
 			g_warning("templates_replace_command: %s", error->message);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list