]> gitweb.factorcode.org Git - factor.git/blobdiff - core/ranges/ranges.factor
core: Remove deprecated words in favor of fixups.
[factor.git] / core / ranges / ranges.factor
index 0373abcfe4d0dca1fa04d3202c703c6df9b05942..25a3b21bd7f50e32ad76b57af0687bf09140b424 100644 (file)
@@ -59,13 +59,3 @@ PRIVATE>
 : [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