aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-06-17 02:14:55 +0000
committernyamatongwe <devnull@localhost>2000-06-17 02:14:55 +0000
commit8a45802cf6b1e7dd04e2c492952672e4a4d4d073 (patch)
treed8e724f1535350a9c910e0f197b41b79a8db1235 /src
parent1dcaa0564b7fc7aa4f98083234d42fe5867080bc (diff)
downloadscintilla-mirror-8a45802cf6b1e7dd04e2c492952672e4a4d4d073.tar.gz
Removed trace.
Diffstat (limited to 'src')
-rw-r--r--src/LexHTML.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx
index 678398742..e9451383b 100644
--- a/src/LexHTML.cxx
+++ b/src/LexHTML.cxx
@@ -71,7 +71,6 @@ static int classifyTagHTML(unsigned int start, unsigned int end,
s[i++] = static_cast<char>(tolower(ch));
}
s[i] = '\0';
-Platform::DebugPrintf("Classify =%s=\n", s);
char chAttr = SCE_H_TAGUNKNOWN;
if (s[0] == '!' && s[1] == '-' && s[2] == '-') { //Comment
chAttr = SCE_H_COMMENT;