]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/bitstreams/bitstreams.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / basis / bitstreams / bitstreams.factor
index 2aa0059542862372be8010dd7a721da64c20fec0..0eef54dc66c6ae2f6738d992c38da26d080216a1 100644 (file)
@@ -70,7 +70,7 @@ GENERIC: poke ( value n bitstream -- )
     [ get-abp + ] [ set-abp ] bi ; inline
     
 : (align) ( n m -- n' )
-    [ /mod 0 > [ 1+ ] when ] [ * ] bi ; inline
+    [ /mod 0 > [ 1 + ] when ] [ * ] bi ; inline
     
 : align ( n bitstream -- )
     [ get-abp swap (align) ] [ set-abp ] bi ; inline