]> gitweb.factorcode.org Git - factor.git/commitdiff
dlists: make push-sorted inline
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 19 Sep 2013 01:22:58 +0000 (18:22 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 19 Sep 2013 01:22:58 +0000 (18:22 -0700)
basis/dlists/dlists.factor

index 251ab78e7e5d69f47ec598e2141df86026a47369..8d1d47f5a4c83cb88098ef49da8997d7dbaf17d3 100644 (file)
@@ -215,7 +215,7 @@ PRIVATE>
     [ swap push-before-node ] [ push-back* ] if* ; inline
 
 : push-sorted ( obj dlist -- dlist-node )
-    dupd [ before? ] with push-before ;
+    dupd [ before? ] with push-before ; inline
 
 INSTANCE: dlist deque