Kaydet (Commit) 03917549 authored tarafından Enrico Tröger's avatar Enrico Tröger

Break lines at 100 characters.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2963 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 46d790cd
......@@ -712,7 +712,8 @@ static gint get_indent_guides_from_lexer(gint lexer)
{
switch (lexer)
{
/* These languages use indentation for control blocks; the "look forward" method works best here */
/* These languages use indentation for control blocks; the "look forward" method works
* best here */
case SCLEX_PYTHON:
case SCLEX_HASKELL:
case SCLEX_MAKEFILE:
......@@ -749,7 +750,8 @@ static gint get_indent_guides_from_lexer(gint lexer)
void sci_set_indentation_guides(ScintillaObject *sci, gboolean enable)
{
gint lexer = sci_get_lexer(sci);
SSM(sci, SCI_SETINDENTATIONGUIDES, (enable ? get_indent_guides_from_lexer(lexer) : SC_IV_NONE), 0);
SSM(sci, SCI_SETINDENTATIONGUIDES,
(enable ? get_indent_guides_from_lexer(lexer) : SC_IV_NONE), 0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment