]> gitweb.factorcode.org Git - factor.git/commitdiff
fjsc: remove extraneous semicolons in compiled output
authorchris.double <chris.double@double.co.nz>
Fri, 15 Dec 2006 06:18:01 +0000 (06:18 +0000)
committerchris.double <chris.double@double.co.nz>
Fri, 15 Dec 2006 06:18:01 +0000 (06:18 +0000)
libs/fjsc/fjsc.factor

index cc32aee943a366ebfad9dbd279539bb757bbb5fd..1dccf4ba7ede86dfc5f08b116b203c39d7bc7a42 100644 (file)
@@ -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 , "\"]" ,  ;