SF.net SVN: geany: [2327] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Mar 12 18:01:21 UTC 2008


Revision: 2327
          http://geany.svn.sourceforge.net/geany/?rev=2327&view=rev
Author:   ntrel
Date:     2008-03-12 11:01:15 -0700 (Wed, 12 Mar 2008)

Log Message:
-----------
Fix bug with keybindings using check_current_word().

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-03-12 17:45:54 UTC (rev 2326)
+++ trunk/ChangeLog	2008-03-12 18:01:15 UTC (rev 2327)
@@ -30,6 +30,8 @@
  * doc/geany.txt, doc/geany.html:
    Update 'Filtering out version control files' section for new versions
    of GNU Grep.
+ * src/keybindings.c:
+   Fix bug with keybindings using check_current_word().
 
 
 2008-03-09  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c	2008-03-12 17:45:54 UTC (rev 2326)
+++ trunk/src/keybindings.c	2008-03-12 18:01:15 UTC (rev 2327)
@@ -1108,7 +1108,7 @@
 	gint idx = document_get_cur_idx();
 	gint pos;
 
-	if (DOC_IDX_VALID(idx))
+	if (! DOC_IDX_VALID(idx))
 		return FALSE;
 
 	pos = sci_get_current_position(doc_list[idx].sci);


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