diff options
author | nyamatongwe <devnull@localhost> | 2000-12-07 10:53:04 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-12-07 10:53:04 +0000 |
commit | 4d68a4c693455033bb5187fd81fbb08258bd2c47 (patch) | |
tree | d66d73cc62602b01137ea04651d143c627f453ba | |
parent | 04c59a2edc175acee884cb36c50f507318a524df (diff) | |
download | scintilla-mirror-4d68a4c693455033bb5187fd81fbb08258bd2c47.tar.gz |
Steffen removed SCE_PL_REF state.
-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; |