]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/furnace/utilities/utilities.factor
Updating code to use CONSTANT: instead of : foo 123 ; inline
[factor.git] / basis / furnace / utilities / utilities.factor
index 4fc68f773577b69fefec98889ce77e04bee335f9..c0cb7dbced83176a25d1b5063ec4bf8870a19a80 100755 (executable)
@@ -89,7 +89,7 @@ M: object modify-form drop f ;
         [XML <input type="hidden" value=<-> name=<->/> XML]
     ] [ drop ] if ;
 
-: nested-forms-key "__n" ;
+CONSTANT: nested-forms-key "__n"
 
 : request-params ( request -- assoc )
     dup method>> {
@@ -131,7 +131,7 @@ M: object modify-form drop f ;
 
 SYMBOL: exit-continuation
 
-: exit-with ( value -- )
+: exit-with ( value -- )
     exit-continuation get continue-with ;
 
 : with-exit-continuation ( quot -- value )