summaryrefslogtreecommitdiffstats
path: root/src/outputgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/outputgen.cpp')
-rw-r--r--src/outputgen.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/outputgen.cpp b/src/outputgen.cpp
index 8aec61f..71b10ed 100644
--- a/src/outputgen.cpp
+++ b/src/outputgen.cpp
@@ -66,10 +66,12 @@ void OutputGenerator::endPlainFile()
void OutputGenerator::pushGeneratorState()
{
genStack->push(new bool(isEnabled()));
+ //printf("%p:pushGeneratorState(%d)\n",this,genStack->count());
}
void OutputGenerator::popGeneratorState()
{
+ //printf("%p:popGeneratorState(%d)\n",this,genStack->count());
bool *lb = genStack->pop();
ASSERT(lb!=0);
if (lb==0) return; // for some robustness against superfluous \endhtmlonly commands.