SF.net SVN: geany: [1933] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Tue Oct 9 11:49:42 UTC 2007
Revision: 1933
http://geany.svn.sourceforge.net/geany/?rev=1933&view=rev
Author: ntrel
Date: 2007-10-09 04:49:42 -0700 (Tue, 09 Oct 2007)
Log Message:
-----------
Fix inserting spaces instead of tab when using 'Suppress construct
completion' and spaces are used for indentation.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/keybindings.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-10-08 12:10:03 UTC (rev 1932)
+++ trunk/ChangeLog 2007-10-09 11:49:42 UTC (rev 1933)
@@ -1,3 +1,10 @@
+2007-10-09 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/keybindings.c:
+ Fix inserting spaces instead of tab when using 'Suppress construct
+ completion' and spaces are used for indentation.
+
+
2007-10-08 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/callbacks.c, src/keybindings.c:
Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c 2007-10-08 12:10:03 UTC (rev 1932)
+++ trunk/src/keybindings.c 2007-10-09 11:49:42 UTC (rev 1933)
@@ -1266,7 +1266,7 @@
sci_add_text(doc_list[idx].sci, " ");
break;
case GDK_Tab:
- sci_add_text(doc_list[idx].sci, "\t");
+ sci_cmd(doc_list[idx].sci, SCI_TAB);
break;
default:
break;
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