summaryrefslogtreecommitdiffstats
path: root/scintilla/lexers/LexSQL.cxx
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2010-11-16 15:05:01 +0000
committerXhmikosR <xhmikosr@users.sourceforge.net>2010-11-16 15:05:01 +0000
commit8ece72d5e3b93645940fbd551da0855b2c4da703 (patch)
tree9a168f34dffa57a20eb151fef37f25402cb399b0 /scintilla/lexers/LexSQL.cxx
parentacbf5858e8473315803f3cc50d97b9891ba4e823 (diff)
downloadnotepad2-mod-8ece72d5e3b93645940fbd551da0855b2c4da703.zip
notepad2-mod-8ece72d5e3b93645940fbd551da0855b2c4da703.tar.gz
notepad2-mod-8ece72d5e3b93645940fbd551da0855b2c4da703.tar.bz2
mark custom code in scintilla, also remove unneeded code
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@202 28bd50df-7adb-d945-0439-6e466c6a13cc
Diffstat (limited to 'scintilla/lexers/LexSQL.cxx')
-rw-r--r--scintilla/lexers/LexSQL.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/scintilla/lexers/LexSQL.cxx b/scintilla/lexers/LexSQL.cxx
index 86c463c..f0af499 100644
--- a/scintilla/lexers/LexSQL.cxx
+++ b/scintilla/lexers/LexSQL.cxx
@@ -266,6 +266,7 @@ static void FoldSQLDoc(unsigned int startPos, int length, int initStyle,
levelNext--;
}
}
+ /* notepad2-mod custom code start */
/* Disable explicit folding; it can often cause problems with non-aware code
if (foldComment && (style == SCE_SQL_COMMENTLINE)) {
// MySQL needs -- comments to be followed by space or control char
@@ -279,7 +280,7 @@ static void FoldSQLDoc(unsigned int startPos, int length, int initStyle,
}
}
}
- */
+ */ /* notepad2-mod custom code end */
if (style == SCE_SQL_OPERATOR) {
if (ch == '(') {
levelNext++;