diff options
author | nyamatongwe <unknown> | 2005-03-03 07:53:12 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-03-03 07:53:12 +0000 |
commit | 208ef4b648b1e96aa3ed2b1445bf9923d84f1ca4 (patch) | |
tree | 60c6866ab16f6a76e07e66787d0333d514e9c3e5 /src/LexHTML.cxx | |
parent | fd538bb1c91411eb766ae4aeec910c97f911f6ff (diff) | |
download | scintilla-mirror-208ef4b648b1e96aa3ed2b1445bf9923d84f1ca4.tar.gz |
Deprecated SCLEX_PHP and SCLEX_ASP.
Diffstat (limited to 'src/LexHTML.cxx')
-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); |