From fed34c7d07c90b4bea9a5d8879852a418f5dbf45 Mon Sep 17 00:00:00 2001 From: Andreas Gal Date: Sun, 8 May 2011 14:08:38 -0700 Subject: [PATCH] eliminate putBack --- pdf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pdf.js b/pdf.js index b836a4b09..c7ca1f02c 100644 --- a/pdf.js +++ b/pdf.js @@ -271,7 +271,7 @@ var Lexer = (function() { var str = ch; var stream = this.stream; do { - ch = stream.getChar(); + ch = stream.lookChar(); if (ch == "." && !floating) { str += ch; floating = true; @@ -284,10 +284,10 @@ var Lexer = (function() { } else if (ch == "e" || ch == "E") { floating = true; } else { - // put back the last character, it doesn't belong to us - stream.putBack(); + // the last character doesn't belong to us break; } + stream.getChar(); } while (true); var value = parseFloat(str); if (isNaN(value))