diff options
author | nyamatongwe <unknown> | 2000-12-07 10:53:04 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-12-07 10:53:04 +0000 |
commit | 5d27f707cb654e98333c6c6238d4c9e4aeb16a4f (patch) | |
tree | d66d73cc62602b01137ea04651d143c627f453ba /src/LexPerl.cxx | |
parent | 510ca9d19c4d4f0784ce4920a1ff59c24b875092 (diff) | |
download | scintilla-mirror-5d27f707cb654e98333c6c6238d4c9e4aeb16a4f.tar.gz |
Steffen removed SCE_PL_REF state.
Diffstat (limited to 'src/LexPerl.cxx')
-rw-r--r-- | src/LexPerl.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/LexPerl.cxx b/src/LexPerl.cxx index 623de99b5..c2c52533c 100644 --- a/src/LexPerl.cxx +++ b/src/LexPerl.cxx @@ -498,11 +498,6 @@ static void ColourisePerlDoc(unsigned int startPos, int length, int initStyle, styler.ColourTo(i - 1, state); state = SCE_PL_DEFAULT; } - } else if (state == SCE_PL_REF) { - if (isEndVar(ch)) { - styler.ColourTo(i - 1, state); - state = SCE_PL_DEFAULT; - } } else if (state == SCE_PL_REGEX) { if (!quoteUp && !isspace(ch)) { quoteUp = ch; |