]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/asn1/asn1.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / asn1 / asn1.factor
index ae6611b2c174fb24a4fef73cb1cf27b3d7eaefed..ad86a8877d4b2e9e056d328abea96920e0268fb2 100644 (file)
@@ -33,7 +33,7 @@ PRIVATE>
         { "universal"
             H{
                 { "primitive"
-                    H{ 
+                    H{
                         { 1 "boolean" }
                         { 2 "integer" }
                         { 4 "string" }
@@ -90,7 +90,7 @@ ERROR: unsupported-tag-encoding id ;
 
 : set-content-length ( -- )
     read1
-    dup 127 <= [ 
+    dup 127 <= [
         127 bitand read be>
     ] unless elements get contentlength<< ;
 
@@ -103,7 +103,7 @@ ERROR: unsupported-tag-encoding id ;
         elements get tagclass>> of
         elements get encoding>> of
         elements get tag>>
-        of [ 
+        of [
             elements get objtype<<
         ] when*
     ] each ;