Merge pull request #296 from sbarman/lexerfix2

added skip to lexer
This commit is contained in:
Andreas Gal 2011-08-03 15:05:43 -07:00
commit 017279b6ec

3
pdf.js
View File

@ -2412,6 +2412,9 @@ var Lexer = (function() {
return;
}
}
},
skip: function() {
this.stream.skip();
}
};