From 33a62c7f9de7e9b6200943609db56697e070d753 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 16 Jul 2015 08:51:58 -0700 Subject: [PATCH] math.parser: with-radix-char quot shouldn't get called with ``f``. --- core/math/parser/parser.factor | 1 - 1 file changed, 1 deletion(-) diff --git a/core/math/parser/parser.factor b/core/math/parser/parser.factor index a7b277b1a8..07b876a8a2 100644 --- a/core/math/parser/parser.factor +++ b/core/math/parser/parser.factor @@ -240,7 +240,6 @@ DEFER: @neg-digit { CHAR: b [ drop 2 ->radix require-next-digit ] } { CHAR: o [ drop 8 ->radix require-next-digit ] } { CHAR: x [ drop 16 ->radix require-next-digit ] } - { f [ 3drop 2drop 0 ] } [ [ drop ] 2dip swap call ] } case ] 2curry next-digit ; inline