aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-01-19 23:16:42 +0000
committernyamatongwe <unknown>2001-01-19 23:16:42 +0000
commit347e47646b37986d18b0fbb6787fec71bb394483 (patch)
tree2b326018f0d0d6bf9026f60592f1c9de1530de02 /src
parente33b91b20ca2cc7b241b73b1ce07e413a6d342a6 (diff)
downloadscintilla-mirror-347e47646b37986d18b0fbb6787fec71bb394483.tar.gz
Removed dead code that was commented out in last change.
Diffstat (limited to 'src')
-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 {