]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/vocabs/refresh/refresh.factor
io.files: exists? -> file-exists? and rename primitive.
[factor.git] / basis / vocabs / refresh / refresh.factor
index 948f2b1ac3596ec4925d521eb5bd90ccc63d9f27..8de0f4892b272a508a8b2e8cecac829ca452eab5 100644 (file)
@@ -8,14 +8,14 @@ IN: vocabs.refresh
 : source-modified? ( path -- ? )
     dup source-files get at [
         dup path>>
-        dup exists? [
+        dup file-exists? [
             utf8 file-lines crc32 checksum-lines
             swap checksum>> = not
         ] [
             2drop f
         ] if
     ] [
-        exists?
+        file-exists?
     ] ?if ;
 
 SYMBOL: changed-vocabs