Revision: 391
Author: ntrel
Date: 2006-06-02 07:26:34 -0700 (Fri, 02 Jun 2006)
ViewCVS: http://svn.sourceforge.net/geany/?rev=391&view=rev
Log Message:
-----------
Fix Go to tag declaration/definition
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/callbacks.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-06-02 14:04:59 UTC (rev 390)
+++ trunk/ChangeLog 2006-06-02 14:26:34 UTC (rev 391)
@@ -3,9 +3,10 @@
* src/highlighting.c, data/filetypes.css: improved colouring
-2006-06-01 Nick Treleaven <nick.treleaven(a)btinternet.com>
+2006-06-02 Nick Treleaven <nick.treleaven(a)btinternet.com>
* src/dialogs.c: Fix dialog path warnings for command-line files.
+ * src/callbacks.c: Fix Go to tag declaration/definition.
2006-05-31 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/src/callbacks.c
===================================================================
--- trunk/src/callbacks.c 2006-06-02 14:04:59 UTC (rev 390)
+++ trunk/src/callbacks.c 2006-06-02 14:26:34 UTC (rev 391)
@@ -1288,7 +1288,7 @@
guint i, j;
const GPtrArray *tags;
- if (utils_strcmp(_("Goto tag definition"), gtk_label_get_text(GTK_LABEL(gtk_bin_get_child(GTK_BIN(menuitem))))))
+ if (menuitem == GTK_MENU_ITEM(lookup_widget(app->popup_menu, "goto_tag_definition1")))
type = tm_tag_function_t;
else
type = tm_tag_prototype_t;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 387
Author: eht16
Date: 2006-06-02 04:32:37 -0700 (Fri, 02 Jun 2006)
ViewCVS: http://svn.sourceforge.net/geany/?rev=387&view=rev
Log Message:
-----------
updated TODO
Modified Paths:
--------------
trunk/TODO
Modified: trunk/TODO
===================================================================
--- trunk/TODO 2006-06-01 14:49:16 UTC (rev 386)
+++ trunk/TODO 2006-06-02 11:32:37 UTC (rev 387)
@@ -5,12 +5,10 @@
Geany 0.7 or later:
- o improve scrolling
o fix a freeze at switching between filetypes with files in
ISO-8859-x encoding (reported by Jörg Sommer)
o encoding-bug in utils_convert_to_utf8()
o documentation: list and explain filetype modes
- o make keyboard shortcuts user-definable
o inverting highlighting by selection
o src/sci_cb.c: improve auto completion(include local tags)
o create filetype specific menus, read templates from filetypes.*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 386
Author: ntrel
Date: 2006-06-01 07:49:16 -0700 (Thu, 01 Jun 2006)
ViewCVS: http://svn.sourceforge.net/geany/?rev=386&view=rev
Log Message:
-----------
Quote perl filename for compiling
Modified Paths:
--------------
trunk/data/filetypes.perl
Modified: trunk/data/filetypes.perl
===================================================================
--- trunk/data/filetypes.perl 2006-06-01 13:55:44 UTC (rev 385)
+++ trunk/data/filetypes.perl 2006-06-01 14:49:16 UTC (rev 386)
@@ -45,10 +45,10 @@
# (use only one of it at one time)
# B - The Perl Bytecode Compiler (requires Perl 5.8 or higher)
-compiler=perl -MO=Bytecode,-H,-o%fc %f
+compiler=perl -MO=Bytecode,-H,-o"%f"c "%f"
# alternatively use perlcc
-#compiler=perlcc -o %e %f
+#compiler=perlcc -o "%e" "%f"
# instead of actual compiling, just run a nice syntax check
#compiler=perl -c "%f"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 384
Author: ntrel
Date: 2006-05-31 14:17:30 -0700 (Wed, 31 May 2006)
ViewCVS: http://svn.sourceforge.net/geany/?rev=384&view=rev
Log Message:
-----------
Discard old session files also for unsaved documents
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/keyfile.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-05-31 14:53:27 UTC (rev 383)
+++ trunk/ChangeLog 2006-05-31 21:17:30 UTC (rev 384)
@@ -2,6 +2,7 @@
* scintilla/PlatGTK.cxx:
Backport a Scintilla fix for crashes with recent GTK+ font issue.
+ * src/keyfile.c: Discard old session files also for unsaved documents.
2006-05-30 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c 2006-05-31 14:53:27 UTC (rev 383)
+++ trunk/src/keyfile.c 2006-05-31 21:17:30 UTC (rev 384)
@@ -162,14 +162,11 @@
j++;
}
}
- // if open tabs less than GEANY_SESSION_FILES, delete existing saved entries in the list
- if (max < GEANY_SESSION_FILES)
+ // if open filenames less than GEANY_SESSION_FILES, delete existing saved entries in the list
+ for(i = j; i < GEANY_SESSION_FILES; i++)
{
- for(i = max; i < GEANY_SESSION_FILES; i++)
- {
- g_snprintf(entry, 13, "FILE_NAME_%d", i);
- g_key_file_set_string(config, "files", entry, "");
- }
+ g_snprintf(entry, 13, "FILE_NAME_%d", i);
+ g_key_file_set_string(config, "files", entry, "");
}
// write the file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.