On this page:
require/ provide
define-planet-package
quote-require
Version: 4.1.3

5 Module Imports and Exports

 (require (planet cce/scheme:4:1/require-provide))

This module provides tools for managing the imports and exports of modules.

(require/provide module-path ...)

Re-exports all bindings provided by each module-path. Equivalent to:

  (require module-path ...)
  (provide (all-from-out module-path ...))

(define-planet-package name package)

Defines a shortcut name for importing modules from planet package package. Subsequently, (name module) is equivalent to (planet package/module) as a require path. For instance, to import the text and web modules from this package:

  (define-planet-package my-package cce/scheme)
  (require (my-package web) (my-package text))

The above require is equivalent to:

  (require (planet cce/scheme/web) (planet cce/scheme/text))

(quote-require require-spec ...)

Produces the names exported by the require-specs as a list of symbols.

Examples:

  > (quote-require scheme/bool scheme/function)

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/main.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/contract.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/class.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/dict.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/include.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/pretty.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/math.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/shared.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/tcp.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/udp.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/list.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/string.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/function.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/path.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/file.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/port.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/cmdline.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/promise.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/bool.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/local.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/nest.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/context.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/kerncase.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/port.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/portlines.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzscheme/main.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/etc.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/contract.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/list.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/port.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/main-collects.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/kw.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/mzscheme.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/stxmz-body.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/old-ds.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/old-rp.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/old-if.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/old-procs.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/name.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/dirs.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/path-relativize.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/config/main.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/private/winutf16.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/private/mach-o.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/config/config.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/configtab.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/stx.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/stxset.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/contract-arrow.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/contract-object.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-guts.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-ds.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-opt.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-basic-opters.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-arrow.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-helpers.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/pretty.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-opt-guts.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/private/boundmap.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/struct-info.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-ds-helpers.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/class-internal.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/contract-arr-checks.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/stxparam.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/class-events.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/serialize-structs.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/define.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/classidmap.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/contract-arr-obj-helpers.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/shared.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/struct.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/path-spec.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/increader.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/cm-accomplice.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/match.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/runtime.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/match-expander.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/define-forms.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/parse.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/parse-helper.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/patterns.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/gen-match.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/compiler.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/boundmap.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/split-rows.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/reorder.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/provider.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/list.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/cons.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/selector.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/predicate.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/misc.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/fold.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/search.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/filter.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/delete.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/alist.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/lset.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/optional.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/srfi/1/util.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/parse-quasi.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/unit-keywords.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/unit-runtime.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/unit-syntax.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/unit-compiletime.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/contract-object.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/main.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/planet.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/infotab/lang/reader.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/module-reader.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/info.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/infotab.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/class.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/function.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/queue.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/require-provide.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/sandbox.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/syntax.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/text.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/values.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/web.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/main.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/private/unbound.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Users/adelphiuser/Library/PLT Scheme/planet/300/4.1.3/cache/cce/scheme.plt/4/1/private/syntax-core.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/xml.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/unitsig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/xml-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/xml-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/private/sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/private/structures.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/private/reader.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/private/writer.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/private/xexpr.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/private/space.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/private/syntax.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/unitsig200.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/unit200.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/sigmatch.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/unitidmap.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/private/sigutil.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/string.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/planet-archives.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/private/planet-shared.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/file.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/config.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/cachepath.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/private/define-config.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/getinfo.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/private/data.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/modread.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/sandbox.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/moddep.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/gui/dynamic.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/modcode.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/modcollapse.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/modresolve.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/private/modhelp.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/private/modcollapse-noctc.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/manual.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/basic.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-style.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-scheme.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-mod.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-tech.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-bib.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-proc.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-form.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-class.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-vars.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-bind.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/decode.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/struct.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/scheme.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/search.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/config.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/manual-struct.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-ex.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/serialize.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/private/serialize.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/decode-struct.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/resolver.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/match.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/date.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/url.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/head.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/struct.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/private/linkage.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/parsereq.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/private/short-syntax-helpers.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/legacy-match.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/match/parse-legacy.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/head-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/head-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/unit/lang.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/signature/lang.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/url-structs.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/url-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/url-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/tcp-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/tcp-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/uri-codec.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/uri-codec-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/uri-codec-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/class.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/for.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-utils.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/qsloc.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scribble/private/manual-method.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/planet/util.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/pack.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/plt-single-installer.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/unpack.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/inflate.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/base64.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/base64-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/net/base64-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/option-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/setup-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/option-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/launcher/launcher-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/launcher/launcher-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/dynext-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/dynext-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/option-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/compiler-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/file-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/link-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/compile-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/syntax/toplevel.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/compile.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/cm.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/private/omitted-paths.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/compile-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/link-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/file-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/include.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/process.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/sendevent.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/private/dirs.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/private/cmdargs.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/dynext/filename-version.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/version/utils.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/cm-accomplice.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/embed.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/variant.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/embed-unit.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/embed-sig.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/xml/plist.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/private/winicon.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/private/winsubsys.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/private/macfw.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/private/windlldir.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/compiler/private/collects-path.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/scheme/system.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/setup/private/path-utils.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/file/gzip.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mzlib/deflate.ss orig-registry #<module-registry> current-registry #<module-registry>

    skipping:  /Applications/PLT Scheme v4.1.3/collects/mred/private/dynamic.ss orig-registry #<module-registry> current-registry #<module-registry>

  (false true symbol=? false? boolean=? negate curryr curry)