aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexHTML.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-06-17 02:14:55 +0000
committernyamatongwe <unknown>2000-06-17 02:14:55 +0000
commitdcf3966d245a9a79ceb7f49ace2892f6c5e8bb8d (patch)
treed8e724f1535350a9c910e0f197b41b79a8db1235 /src/LexHTML.cxx
parent25203d7b8c1060d0edd66c66a1f8a0fac2c9329b (diff)
downloadscintilla-mirror-dcf3966d245a9a79ceb7f49ace2892f6c5e8bb8d.tar.gz
Removed trace.
Diffstat (limited to 'src/LexHTML.cxx')
-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;