Disable a debug printf; someone enabled code elsewhere that's calling it all the time

git-svn-id: svn://10.0.0.236/trunk@58707 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
akkana%netscape.com
2000-01-26 02:34:46 +00:00
parent 43a0db0962
commit adbd7e7404
2 changed files with 6 additions and 6 deletions

View File

@@ -466,7 +466,7 @@ nsHTMLToTXTSinkStream::OpenContainer(const nsIParserNode& aNode)
{
if (-1 != style.Find("-moz-pre-wrap", PR_TRUE, whitespace))
{
#ifdef DEBUG_akkana
#ifdef DEBUG_preformatted
printf("Set mPreFormatted based on style moz-pre-wrap\n");
#endif
mPreFormatted = PR_TRUE;
@@ -489,7 +489,7 @@ nsHTMLToTXTSinkStream::OpenContainer(const nsIParserNode& aNode)
if (NS_SUCCEEDED(err))
{
SetWrapColumn((PRUint32)col);
#ifdef DEBUG_akkana
#ifdef DEBUG_preformatted
printf("Set wrap column to %d based on style\n", mWrapColumn);
#endif
}
@@ -497,7 +497,7 @@ nsHTMLToTXTSinkStream::OpenContainer(const nsIParserNode& aNode)
}
else if (-1 != style.Find("pre", PR_TRUE, whitespace))
{
#ifdef DEBUG_akkana
#ifdef DEBUG_preformatted
printf("Set mPreFormatted based on style pre\n");
#endif
mPreFormatted = PR_TRUE;