From 10f28c9c675f1813de7439e94efa03b4be7326ea Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 12 May 2010 21:42:44 -0700 Subject: [PATCH] Bug 564369 - streamline TokenStream::getChar(), part 8. r=cdleary. --HG-- extra : rebase_source : 403e102ea4d5b135ea81095ebfd49835940ee4e7 --- js/src/jsscan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jsscan.h b/js/src/jsscan.h index a92f9800be5..a8ab76bcef5 100644 --- a/js/src/jsscan.h +++ b/js/src/jsscan.h @@ -297,7 +297,7 @@ enum TokenStreamFlags #define t_atom2 u.p.atom2 #define t_dval u.dval -const size_t LINE_LIMIT = 256; /* logical line buffer size limit +const size_t LINE_LIMIT = 1024; /* logical line buffer size limit -- physical line length is unlimited */ class TokenStream