From e68593d9e58d1f21ae7ee4d44568798adc8e89e7 Mon Sep 17 00:00:00 2001 From: "chris.double" Date: Fri, 15 Dec 2006 06:18:01 +0000 Subject: [PATCH] fjsc: remove extraneous semicolons in compiled output --- libs/fjsc/fjsc.factor | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/fjsc/fjsc.factor b/libs/fjsc/fjsc.factor index cc32aee943..1dccf4ba7e 100644 --- a/libs/fjsc/fjsc.factor +++ b/libs/fjsc/fjsc.factor @@ -53,7 +53,6 @@ LAZY: 'identifier-middle' ( -- parser ) and and and and and and and and ] satisfy <+> ; -USE: prettyprint LAZY: 'identifier' ( -- parser ) 'identifier-ends' 'identifier-middle' <&> [ first2 append ] <@ @@ -100,7 +99,7 @@ M: ast-number (literal) M: ast-number (compile) "factor.data_stack.push(" , (literal) - ");" , ; + ")" , ; M: ast-string (literal) "'" , @@ -110,7 +109,7 @@ M: ast-string (literal) M: ast-string (compile) "factor.data_stack.push(" , (literal) - ");" , ; + ")" , ; M: ast-identifier (literal) "factor.words[\"" , ast-identifier-value , "\"]" , ;