Revision: 2428
http://geany.svn.sourceforge.net/geany/?rev=2428&view=rev
Author: eht16
Date: 2008-03-28 09:31:04 -0700 (Fri, 28 Mar 2008)
Log Message:
-----------
Add datadir and localedir to Geany's pkgconfig file.
Modified Paths:
--------------
trunk/ChangeLog
trunk/geany.pc.in
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-03-28 16:16:55 UTC (rev 2427)
+++ trunk/ChangeLog 2008-03-28 16:31:04 UTC (rev 2428)
@@ -2,6 +2,7 @@
* src/editor.c: Unfold hidden code when the fold point modified
(e.g. commented out, fixes #1923350).
+ * geany.pc.in: Add datadir and localedir to Geany's pkgconfig file.
2008-03-27 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/geany.pc.in
===================================================================
--- trunk/geany.pc.in 2008-03-28 16:16:55 UTC (rev 2427)
+++ trunk/geany.pc.in 2008-03-28 16:31:04 UTC (rev 2428)
@@ -2,6 +2,9 @@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
+datarootdir=@datarootdir@
+datadir=@datadir@
+localedir=@localedir@
Name: Geany
Description: A fast and lightweight IDE using GTK2
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2426
http://geany.svn.sourceforge.net/geany/?rev=2426&view=rev
Author: ntrel
Date: 2008-03-27 11:07:43 -0700 (Thu, 27 Mar 2008)
Log Message:
-----------
Fix segfault with Run command when a project is open and the current
file's filetype has no run command.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/build.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-03-27 17:26:09 UTC (rev 2425)
+++ trunk/ChangeLog 2008-03-27 18:07:43 UTC (rev 2426)
@@ -16,6 +16,9 @@
Check file on disk for changes (with timeout) when pressing a key.
* src/keyfile.c:
Ignore documents with no absolute path when saving session files.
+ * src/build.c:
+ Fix segfault with Run command when a project is open and the current
+ file's filetype has no run command.
2008-03-26 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c 2008-03-27 17:26:09 UTC (rev 2425)
+++ trunk/src/build.c 2008-03-27 18:07:43 UTC (rev 2426)
@@ -1991,6 +1991,7 @@
/* save the file only if the run command uses it */
if (doc_list[idx].changed &&
+ NZV(ft->programs->run_cmd) && /* can happen when project is open */
strstr(ft->programs->run_cmd, "%f") != NULL)
document_save_file(idx, FALSE);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2423
http://geany.svn.sourceforge.net/geany/?rev=2423&view=rev
Author: ntrel
Date: 2008-03-27 09:45:18 -0700 (Thu, 27 Mar 2008)
Log Message:
-----------
Remove unnecessary variable.
Modified Paths:
--------------
trunk/src/utils.c
Modified: trunk/src/utils.c
===================================================================
--- trunk/src/utils.c 2008-03-27 13:59:51 UTC (rev 2422)
+++ trunk/src/utils.c 2008-03-27 16:45:18 UTC (rev 2423)
@@ -357,7 +357,6 @@
time_t t;
gchar *locale_filename;
gboolean ret = FALSE;
- const time_t delay_time = 10; /* seconds to delay disk checks for */
if (idx == -1 || doc_list[idx].file_name == NULL) return FALSE;
@@ -370,7 +369,7 @@
{
/* TODO: warn user file on disk is missing */
}
- else if (doc_list[idx].mtime - delay_time > t || st.st_mtime > t)
+ else if (doc_list[idx].mtime > t || st.st_mtime > t)
{
geany_debug("Strange: Something is wrong with the time stamps.");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.