SF.net SVN: geany:[2926] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Mon Sep 8 14:25:01 UTC 2008


Revision: 2926
          http://geany.svn.sourceforge.net/geany/?rev=2926&view=rev
Author:   eht16
Date:     2008-09-08 14:25:00 +0000 (Mon, 08 Sep 2008)

Log Message:
-----------
Add '-' (dash) to the wordchars when using 'open selected filename'.
Please open a bug report if this will break any filenames.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/callbacks.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-09-08 14:24:03 UTC (rev 2925)
+++ trunk/ChangeLog	2008-09-08 14:25:00 UTC (rev 2926)
@@ -13,6 +13,9 @@
    Rename all toolbar widgets for consistent names.
  * doc/geany.html, doc/geany.txt:
    Fix typo.
+ * src/callbacks.c:
+   Add '-' (dash) to the wordchars when using 'open selected filename'.
+   Please open a bug report if this will break any filenames.
 
 
 2008-09-01  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/src/callbacks.c
===================================================================
--- trunk/src/callbacks.c	2008-09-08 14:24:03 UTC (rev 2925)
+++ trunk/src/callbacks.c	2008-09-08 14:25:00 UTC (rev 2926)
@@ -1853,7 +1853,7 @@
 	if (doc == NULL)
 		return;
 
-	sel = editor_get_default_selection(doc, TRUE, GEANY_WORDCHARS"./");
+	sel = editor_get_default_selection(doc, TRUE, GEANY_WORDCHARS"./-");
 
 	if (sel != NULL)
 	{


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



More information about the Commits mailing list