]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/resolv-conf/resolv-conf.factor
change ERROR: words from throw-foo back to foo.
[factor.git] / extra / resolv-conf / resolv-conf.factor
index 8fe2473a4a729caf154057058e6e3f406af9de62..b6eefd214785192277c39d659655c6e38248bd0a 100644 (file)
@@ -68,7 +68,7 @@ ERROR: unsupported-resolv.conf-option string ;
         { [ "rotate" ?head ] [ drop t >>rotate? ] }
         { [ "no-check-names" ?head ] [ drop t >>no-check-names? ] }
         { [ "inet6" ?head ] [ drop t >>inet6? ] }
-        [ throw-unsupported-resolv.conf-option ]
+        [ unsupported-resolv.conf-option ]
     } cond drop ;
 
 ERROR: unsupported-resolv.conf-line string ;
@@ -81,7 +81,7 @@ ERROR: unsupported-resolv.conf-line string ;
         { [ "search" ?head ] [ parse-search ] }
         { [ "sortlist" ?head ] [ parse-sortlist ] }
         { [ "options" ?head ] [ parse-option ] }
-        [ throw-unsupported-resolv.conf-line ]
+        [ unsupported-resolv.conf-line ]
     } cond ;
 
 PRIVATE>