]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/encodings/ascii/ascii.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / basis / io / encodings / ascii / ascii.factor
index 1654cb8b833a17d39a9c206c0df59ba9f35fccb0..16132ca810d814299bcc184c12637776130d56cf 100644 (file)
@@ -5,7 +5,7 @@ IN: io.encodings.ascii
 
 <PRIVATE
 : encode-if< ( char stream encoding max -- )
-    nip 1- pick < [ encode-error ] [ stream-write1 ] if ; inline
+    nip 1 - pick < [ encode-error ] [ stream-write1 ] if ; inline
 
 : decode-if< ( stream encoding max -- character )
     nip swap stream-read1 dup
@@ -19,4 +19,4 @@ M: ascii encode-char
     128 encode-if< ;
 
 M: ascii decode-char
-    128 decode-if< ;
\ No newline at end of file
+    128 decode-if< ;