diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/LexPerl.cxx | 23 |
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 { |