Unix makefile

git-svn-id: svn://10.0.0.236/trunk@61364 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waldemar%netscape.com
2000-02-19 10:03:07 +00:00
parent d3187b25b0
commit 5fe4726dbf
4 changed files with 46 additions and 2 deletions

View File

@@ -572,7 +572,6 @@ bool JS::Lexer::lexIdentifier(String &s, bool allowLeadingDigit)
// Return true if the numeric literal is followed by a unit, but don't read the unit yet.
bool JS::Lexer::lexNumeral()
{
int radix = 10;
int hasDecimalPoint = 0;
String &s = nextToken->chars;
uint digit;
@@ -936,6 +935,7 @@ void JS::Lexer::lexToken(bool preferRegExp)
default:
syntaxError("Bad character");
return;
}
break;