aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexPerl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexPerl.cxx')
-rw-r--r--src/LexPerl.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/LexPerl.cxx b/src/LexPerl.cxx
index 0604ca776..7e61080a4 100644
--- a/src/LexPerl.cxx
+++ b/src/LexPerl.cxx
@@ -367,29 +367,6 @@ static void ColourisePerlDoc(unsigned int startPos, int length, int initStyle,
preferRE = true;
state = SCE_PL_DEFAULT;
ch = ' ';
-/*
- if (ch == '#') {
- state = SCE_PL_COMMENTLINE;
- } else if (ch == '\"') {
- state = SCE_PL_STRING;
- Quote.New(1);
- Quote.Open(ch);
- } else if (ch == '\'') {
- state = SCE_PL_CHARACTER;
- Quote.New(1);
- Quote.Open(ch);
- } else if (ch == '<' && chNext == '<') {
- state = SCE_PL_HERE_DELIM;
- HereDoc.State = 0;
- } else if (isPerlOperator(ch)) {
- if (ch == ')' || ch == ']')
- preferRE = false;
- else
- preferRE = true;
- styler.ColourTo(i, SCE_PL_OPERATOR);
- state = SCE_PL_DEFAULT;
- }
-*/
}
}
} else {