summaryrefslogtreecommitdiffstats
path: root/scintilla/lexers/LexScriptol.cxx
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2011-10-27 12:28:26 +0000
committerXhmikosR <xhmikosr@users.sourceforge.net>2011-10-27 12:28:26 +0000
commitbf3e7cab6947e80b8d3474af4b6b8ff96fcb2953 (patch)
treea7e83f6144e91a661daf894aece25e895eb01721 /scintilla/lexers/LexScriptol.cxx
parentc26643bc6224839011829df94ae3adae3b190177 (diff)
downloadnotepad2-mod-bf3e7cab6947e80b8d3474af4b6b8ff96fcb2953.zip
notepad2-mod-bf3e7cab6947e80b8d3474af4b6b8ff96fcb2953.tar.gz
notepad2-mod-bf3e7cab6947e80b8d3474af4b6b8ff96fcb2953.tar.bz2
using Scintilla v3.0.0
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@606 28bd50df-7adb-d945-0439-6e466c6a13cc
Diffstat (limited to 'scintilla/lexers/LexScriptol.cxx')
-rw-r--r--scintilla/lexers/LexScriptol.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla/lexers/LexScriptol.cxx b/scintilla/lexers/LexScriptol.cxx
index 92c7ff5..c497ca1 100644
--- a/scintilla/lexers/LexScriptol.cxx
+++ b/scintilla/lexers/LexScriptol.cxx
@@ -368,7 +368,7 @@ static void FoldSolDoc(unsigned int startPos, int length, int initStyle,
int state = initStyle & 31;
int spaceFlags = 0;
int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, IsSolComment);
- if ((state == SCE_SCRIPTOL_TRIPLE))
+ if (state == SCE_SCRIPTOL_TRIPLE)
indentCurrent |= SC_FOLDLEVELWHITEFLAG;
char chNext = styler[startPos];
for (int i = startPos; i < lengthDoc; i++)