From: Doug Coleman Date: Thu, 30 Dec 2021 19:02:17 +0000 (-0600) Subject: core: Remove deprecated words in favor of fixups. X-Git-Tag: 0.99~2038 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=6de9783d07ccdaaac33da993bf1181b4813f7973 core: Remove deprecated words in favor of fixups. --- diff --git a/core/io/files/files.factor b/core/io/files/files.factor index 543622c1d1..3190bc6884 100644 --- a/core/io/files/files.factor +++ b/core/io/files/files.factor @@ -73,8 +73,6 @@ HOOK: (file-appender) io-backend ( path -- stream ) : file-exists? ( path -- ? ) normalize-path native-string>alien (file-exists?) ; -ALIAS: exists? file-exists? deprecated - ! Current directory : [0..b) ( b -- range ) 0 swap [a..b) ; inline : [1..b) ( b -- range ) 1 swap [a..b) ; inline - -! backwards compatibility for new syntax -ALIAS: [a,b] [a..b] deprecated -ALIAS: (a,b] (a..b] deprecated -ALIAS: [a,b) [a..b) deprecated -ALIAS: (a,b) (a..b) deprecated -ALIAS: [0,b] [0..b] deprecated -ALIAS: [1,b] [1..b] deprecated -ALIAS: [0,b) [0..b) deprecated -ALIAS: [1,b) [1..b) deprecated