]> gitweb.factorcode.org Git - factor.git/commitdiff
stack-checker.values: fix for fry change.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 5 Oct 2019 01:31:04 +0000 (18:31 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 5 Oct 2019 01:31:04 +0000 (18:31 -0700)
basis/stack-checker/values/values.factor

index 72a79a3f718de37746836d3e7c1dd664123f3964..e25212abe3b1e279c619912c5cdff155ed804bf2 100644 (file)
@@ -122,7 +122,7 @@ M: f (literal) current-word get bad-macro-input ;
 GENERIC: known>callable ( known -- quot )
 
 : ?@ ( x -- y )
-    dup callable? [ drop _ ] unless ;
+    dup callable? [ drop _ ] unless ;
 
 M: object known>callable drop \ _ ;