]> gitweb.factorcode.org Git - factor.git/commitdiff
math.parser: whoops, this part shouldn't have been committed.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 29 Nov 2014 20:54:48 +0000 (12:54 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 29 Nov 2014 20:54:48 +0000 (12:54 -0800)
core/math/parser/parser.factor

index 2045aa97e33a1bb390bb1abc5651ce230157e79f..425d393c26987b516b9b85538ad5aee62f965b7c 100644 (file)
@@ -271,11 +271,7 @@ DEFER: @neg-digit
     {
         { CHAR: - [ [ @neg-digit ] require-next-digit ?neg ] }
         { CHAR: + [ [ @pos-digit ] require-next-digit ] }
-        [
-            pick radix>> 10 =
-            [ @pos-first-digit ]
-            [ @pos-digit ] if
-        ]
+        [ @pos-digit ]
     } case ; inline
 
 PRIVATE>