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.