]> gitweb.factorcode.org Git - factor.git/blobdiff - core/parser/parser.factor
io.files: exists? -> file-exists? and rename primitive.
[factor.git] / core / parser / parser.factor
index a6ddb9beb6d38e5005805ccba4328209c9e7b851..be7fdb106a129d90e56727b871e421691b9c1820 100644 (file)
@@ -246,6 +246,6 @@ print-use-hook [ [ ] ] initialize
     parse-file call( -- ) ;
 
 : ?run-file ( path -- )
-    dup exists? [ run-file ] [ drop ] if ;
+    dup file-exists? [ run-file ] [ drop ] if ;
 
 ERROR: version-control-merge-conflict ;