Fix to handle extra #enddocregion tags

This commit is contained in:
Jay Traband
2015-08-11 19:12:19 -07:00
committed by YuCheng Hu
parent 7349fad338
commit 4bc13ad1a6
+5 -3
View File
@@ -25,9 +25,11 @@ module.exports = function regionExtractor() {
lines[ix] = nullLine;
docs.push(doc);
} else if (hasEndRegionTag(line)) {
lines[ix] = nullLine;
doc.endIx = ix;
doc = docStack.pop();
if (doc) {
lines[ix] = nullLine;
doc.endIx = ix;
doc = docStack.pop();
}
}
}
});