diff --git a/src/core/org/luaj/vm2/compiler/LexState.java b/src/core/org/luaj/vm2/compiler/LexState.java index 4b9e31c3..d19ba49f 100644 --- a/src/core/org/luaj/vm2/compiler/LexState.java +++ b/src/core/org/luaj/vm2/compiler/LexState.java @@ -696,9 +696,6 @@ public class LexState extends Constants { _assert (!currIsNewline()); nextChar(); continue; - } else if (isdigit(current)) { - read_numeral(seminfo); - return TK_NUMBER; } else if (isalpha(current) || current == '_') { /* identifier or reserved word */ LuaString ts;