diff options
| author | nyamatongwe <devnull@localhost> | 2001-01-19 23:16:42 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-01-19 23:16:42 +0000 | 
| commit | 1c281f51d0882a1660d40eb8f4a42d2121a4d2ed (patch) | |
| tree | 2b326018f0d0d6bf9026f60592f1c9de1530de02 /src/LexPerl.cxx | |
| parent | b6811b419b3e6499b34166debd5324bbea307bea (diff) | |
| download | scintilla-mirror-1c281f51d0882a1660d40eb8f4a42d2121a4d2ed.tar.gz | |
Removed dead code that was commented out in last change.
Diffstat (limited to 'src/LexPerl.cxx')
| -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 { | 
