]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/http/http.factor
factor: words -> split-words, lines -> split-lines, fix errors
[factor.git] / basis / http / http.factor
index 574f180b97d2171717632463b8bf211b53da17fe..68b8505a3184c0d0c5a0dbca8b66e741cde56d91 100644 (file)
@@ -221,7 +221,7 @@ TUPLE: post-data data params content-type content-encoding ;
         swap >>content-type ;
 
 : parse-content-type-attributes ( string -- attributes )
-    words harvest [
+    split-words harvest [
         "=" split1
         "\"" ?head drop "\"" ?tail drop
     ] { } map>assoc ;