SF.net SVN: geany-plugins:[820] branches/geany-plugins-0.17.1/geanylua

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Jul 15 15:07:17 UTC 2009


Revision: 820
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=820&view=rev
Author:   ntrel
Date:     2009-07-15 15:07:16 +0000 (Wed, 15 Jul 2009)

Log Message:
-----------
Fixes from trunk.

Modified Paths:
--------------
    branches/geany-plugins-0.17.1/geanylua/AUTHORS
    branches/geany-plugins-0.17.1/geanylua/ChangeLog
    branches/geany-plugins-0.17.1/geanylua/geanylua.c
    branches/geany-plugins-0.17.1/geanylua/glspi_init.c

Modified: branches/geany-plugins-0.17.1/geanylua/AUTHORS
===================================================================
--- branches/geany-plugins-0.17.1/geanylua/AUTHORS	2009-07-15 14:55:16 UTC (rev 819)
+++ branches/geany-plugins-0.17.1/geanylua/AUTHORS	2009-07-15 15:07:16 UTC (rev 820)
@@ -1 +1,2 @@
-Jeff Pohlmeyer <yetanothergeek at gmail.com>
+Jeff Pohlmeyer <yetanothergeek at gmail.com> - Author
+Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> - Maintainer

Modified: branches/geany-plugins-0.17.1/geanylua/ChangeLog
===================================================================
--- branches/geany-plugins-0.17.1/geanylua/ChangeLog	2009-07-15 14:55:16 UTC (rev 819)
+++ branches/geany-plugins-0.17.1/geanylua/ChangeLog	2009-07-15 15:07:16 UTC (rev 820)
@@ -1,6 +1,10 @@
+July 13, 2009 (ntrel)
+  Fix using datadir for scripts.
+
 June 24, 2009 (eht16)
   Build libdir and datadir paths on Windows using the installation
   directory as prefix. This still can be improved.
+
 June 23, 2009 (ntrel)
   Look for support library in LIBDIR/geany-plugins/geanylua.
   Read scripts from DATADIR/geany-plugins/geanylua.

Modified: branches/geany-plugins-0.17.1/geanylua/geanylua.c
===================================================================
--- branches/geany-plugins-0.17.1/geanylua/geanylua.c	2009-07-15 14:55:16 UTC (rev 819)
+++ branches/geany-plugins-0.17.1/geanylua/geanylua.c	2009-07-15 15:07:16 UTC (rev 820)
@@ -59,7 +59,7 @@
 GeanyFunctions *geany_functions;
 
 PLUGIN_EXPORT
-GeanyKeyGroup plugin_key_group[1] = {NULL, NULL, 0, NULL};
+GeanyKeyGroup plugin_key_group[1] = {{NULL, NULL, 0, NULL}};
 
 
 

Modified: branches/geany-plugins-0.17.1/geanylua/glspi_init.c
===================================================================
--- branches/geany-plugins-0.17.1/geanylua/glspi_init.c	2009-07-15 14:55:16 UTC (rev 819)
+++ branches/geany-plugins-0.17.1/geanylua/glspi_init.c	2009-07-15 15:07:16 UTC (rev 820)
@@ -447,7 +447,7 @@
 	g_free(install_dir);
 	return result;
 #else
-	return g_strdup(LIBDIR);
+	return g_strdup(DATADIR);
 #endif
 }
 


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



More information about the Plugins-Commits mailing list