minor: Fix accidental global variable leak in marked.

This commit is contained in:
Rohitt Vashishtha
2019-12-06 14:08:50 +05:30
committed by Tim Abbott
parent 1229e69e9b
commit 9bfef83efd

View File

@@ -346,7 +346,7 @@ Lexer.prototype.token = function(src, top, bq) {
listStart.loose = true; listStart.loose = true;
} }
t = { var t = {
type: 'list_item_start', type: 'list_item_start',
loose: loose loose: loose
}; };