SF.net SVN: geany:[3392] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Dec 17 16:00:41 UTC 2008


Revision: 3392
          http://geany.svn.sourceforge.net/geany/?rev=3392&view=rev
Author:   eht16
Date:     2008-12-17 16:00:41 +0000 (Wed, 17 Dec 2008)

Log Message:
-----------
Make Ctrl-click working again to create rectangular selections when no braces and valid definitions are below the cursor (to whose would be jumped then).

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-12-17 16:00:18 UTC (rev 3391)
+++ trunk/ChangeLog	2008-12-17 16:00:41 UTC (rev 3392)
@@ -12,6 +12,10 @@
    Add "editor-notify" to the plugin API.
    This signal is emitted whenever something in an editor widget
    changes, e.g. a character was typed.
+ * src/editor.c:
+   Make Ctrl-click working again to create rectangular selections when
+   no braces and valid definitions are below the cursor (to whose would
+   be jumped then).
 
 
 2008-12-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/src/editor.c
===================================================================
--- trunk/src/editor.c	2008-12-17 16:00:18 UTC (rev 3391)
+++ trunk/src/editor.c	2008-12-17 16:00:41 UTC (rev 3392)
@@ -207,7 +207,7 @@
 			editor_find_current_word(editor, editor_info.click_pos,
 				current_word, sizeof current_word, NULL);
 			if (*current_word)
-				symbols_goto_tag(current_word, TRUE);
+				return symbols_goto_tag(current_word, TRUE);
 			else
 				keybindings_send_command(GEANY_KEY_GROUP_GOTO, GEANY_KEYS_GOTO_MATCHINGBRACE);
 			return TRUE;


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