Revision: 1959
http://geany.svn.sourceforge.net/geany/?rev=1959&view=rev
Author: eht16
Date: 2007-10-18 11:19:17 -0700 (Thu, 18 Oct 2007)
Log Message:
-----------
Fix minor compiler warning about shadowed variable.
Modified Paths:
--------------
trunk/src/prefs.c
Modified: trunk/src/prefs.c
===================================================================
--- trunk/src/prefs.c 2007-10-18 18:03:28 UTC (rev 1958)
+++ trunk/src/prefs.c 2007-10-18 18:19:17 UTC (rev 1959)
@@ -708,8 +708,6 @@
// override each document setting only if the default has changed
if (editor_prefs.use_tabs != use_tabs)
{
- guint i;
-
editor_prefs.use_tabs = use_tabs;
for (i = 0; i < doc_array->len; i++)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1957
http://geany.svn.sourceforge.net/geany/?rev=1957&view=rev
Author: ntrel
Date: 2007-10-18 05:00:43 -0700 (Thu, 18 Oct 2007)
Log Message:
-----------
Apply patch from Catalin Marinas to add a 'newline strips trailing
spaces' pref (thanks).
Modified Paths:
--------------
trunk/ChangeLog
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-10-18 11:52:47 UTC (rev 1956)
+++ trunk/ChangeLog 2007-10-18 12:00:43 UTC (rev 1957)
@@ -2,6 +2,11 @@
* src/vte.c:
Only connect vte_keypress() if enable_bash_keys pref is not set.
+ * src/document.c, src/document.h, src/editor.c, src/editor.h,
+ src/interface.c, src/keyfile.c, src/plugindata.h, src/prefs.c,
+ geany.glade, THANKS:
+ Apply patch from Catalin Marinas to add a 'newline strips trailing
+ spaces' pref (thanks).
2007-10-17 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1954
http://geany.svn.sourceforge.net/geany/?rev=1954&view=rev
Author: ntrel
Date: 2007-10-17 05:55:47 -0700 (Wed, 17 Oct 2007)
Log Message:
-----------
Update plugin api_version for new indentation fields.
Modified Paths:
--------------
trunk/src/plugindata.h
Modified: trunk/src/plugindata.h
===================================================================
--- trunk/src/plugindata.h 2007-10-17 12:27:07 UTC (rev 1953)
+++ trunk/src/plugindata.h 2007-10-17 12:55:47 UTC (rev 1954)
@@ -71,7 +71,7 @@
/* The API version should be incremented whenever any plugin data types below are
* modified. */
-static const gint api_version = 22;
+static const gint api_version = 23;
/* The ABI version should be incremented whenever existing fields in the plugin
* data types below have to be changed or reordered. It should stay the same if fields
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1951
http://geany.svn.sourceforge.net/geany/?rev=1951&view=rev
Author: ntrel
Date: 2007-10-17 04:48:42 -0700 (Wed, 17 Oct 2007)
Log Message:
-----------
item: calltips for more languages.
Modified Paths:
--------------
trunk/TODO
Modified: trunk/TODO
===================================================================
--- trunk/TODO 2007-10-16 09:01:13 UTC (rev 1950)
+++ trunk/TODO 2007-10-17 11:48:42 UTC (rev 1951)
@@ -28,6 +28,8 @@
o (improved Windows support)
o (macro support)
o (better regex support)
+ o (calltip support for non-C-like languages that use
+ function_name(arguments) syntax)
o (better tags support for popular languages? - this is a moving
target...)
o (tango-like icons for the symbol list)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.