diff options
author | nyamatongwe <devnull@localhost> | 2005-03-03 07:53:12 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-03-03 07:53:12 +0000 |
commit | 92481ad0ad3adb18b62bd03d7e419726a531be71 (patch) | |
tree | 60c6866ab16f6a76e07e66787d0333d514e9c3e5 /src | |
parent | 4243bbd56842dbd788198f8e323347258da3c174 (diff) | |
download | scintilla-mirror-92481ad0ad3adb18b62bd03d7e419726a531be71.tar.gz |
Deprecated SCLEX_PHP and SCLEX_ASP.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexHTML.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx index e1406234c..a579098f2 100644 --- a/src/LexHTML.cxx +++ b/src/LexHTML.cxx @@ -1974,5 +1974,6 @@ static const char * const htmlWordListDesc[] = { LexerModule lmHTML(SCLEX_HTML, ColouriseHyperTextDoc, "hypertext", 0, htmlWordListDesc); LexerModule lmXML(SCLEX_XML, ColouriseHyperTextDoc, "xml", 0, htmlWordListDesc); +// SCLEX_ASP and SCLEX_PHP should not be used in new code: use SCLEX_HTML instead. LexerModule lmASP(SCLEX_ASP, ColouriseASPDoc, "asp", 0, htmlWordListDesc); LexerModule lmPHP(SCLEX_PHP, ColourisePHPDoc, "php", 0, htmlWordListDesc); |