diff options
Diffstat (limited to 'src/outputgen.cpp')
-rw-r--r-- | src/outputgen.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/outputgen.cpp b/src/outputgen.cpp index 722558d..95ef0b0 100644 --- a/src/outputgen.cpp +++ b/src/outputgen.cpp @@ -90,8 +90,9 @@ void OutputGenerator::pushGeneratorState() void OutputGenerator::popGeneratorState() { - bool *b = genStack->pop(); - ASSERT(b!=0); - if (b==0) return; // for some robustness against superfluous \endhtmlonly commands. - if (*b) enable(); else disable(); + bool *lb = genStack->pop(); + ASSERT(lb!=0); + if (lb==0) return; // for some robustness against superfluous \endhtmlonly commands. + if (*lb) enable(); else disable(); } + |