Revision: 2980 http://geany.svn.sourceforge.net/geany/?rev=2980&view=rev Author: eht16 Date: 2008-09-21 16:44:30 +0000 (Sun, 21 Sep 2008)
Log Message: ----------- Fix broken indentation of automatic HTML table tag completion (part of #2118289).
Modified Paths: -------------- trunk/ChangeLog trunk/src/editor.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-09-21 16:43:45 UTC (rev 2979) +++ trunk/ChangeLog 2008-09-21 16:44:30 UTC (rev 2980) @@ -5,6 +5,9 @@ Move document_apply_update_prefs() in editor.c. Refactor get_indent_guides_from_lexer() from sciwrappers.c in editor_set_indentation_guides(). + * src/editor.c: + Fix broken indentation of automatic HTML table tag completion + (part of #2118289).
2008-09-19 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/editor.c =================================================================== --- trunk/src/editor.c 2008-09-21 16:43:45 UTC (rev 2979) +++ trunk/src/editor.c 2008-09-21 16:44:30 UTC (rev 2980) @@ -1920,7 +1920,7 @@ }
/* get indent string for generated code */ - if (editor->auto_indent) + if (! editor->auto_indent) indent_str = g_strdup(""); else indent_str = get_single_indent(editor);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.