From: John Benediktsson Date: Thu, 26 Jan 2023 00:04:32 +0000 (-0800) Subject: json: fix a few usings X-Git-Tag: 0.99~752 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=fb12063952c8b1dabc68af689565e7e8e3b8ae26 json: fix a few usings --- diff --git a/basis/furnace/auth/providers/couchdb/couchdb.factor b/basis/furnace/auth/providers/couchdb/couchdb.factor index b4b737ef07..3b090ee64c 100644 --- a/basis/furnace/auth/providers/couchdb/couchdb.factor +++ b/basis/furnace/auth/providers/couchdb/couchdb.factor @@ -1,7 +1,7 @@ USING: accessors assocs base64 byte-arrays combinators.short-circuit continuations couchdb -furnace.auth.providers json.writer kernel make mirrors -namespaces sequences strings urls urls.encoding ; +furnace.auth.providers json kernel make mirrors namespaces +sequences strings urls urls.encoding ; IN: furnace.auth.providers.couchdb ! !!! Implement the authentication protocol for CouchDB. diff --git a/basis/furnace/json/json.factor b/basis/furnace/json/json.factor index 6470479592..e11813dd26 100644 --- a/basis/furnace/json/json.factor +++ b/basis/furnace/json/json.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Slava Pestov. ! See https://factorcode.org/license.txt for BSD license. -USING: json.writer http.server.responses ; +USING: json http.server.responses ; IN: furnace.json : ( body -- response ) diff --git a/extra/pdf/layout/layout.factor b/extra/pdf/layout/layout.factor index 34327e9c62..5440646432 100644 --- a/extra/pdf/layout/layout.factor +++ b/extra/pdf/layout/layout.factor @@ -52,11 +52,11 @@ GENERIC: pdf-width ( canvas obj -- n ) ] when ] keep - ] while drop ; + ] while* ; PRIVATE>