
- uses keywords with bindings - : macro in separate file so it can be used earlier - internal function in separate file FilterSet/c and LatentFilterSet/c contracts Avoid returning #f when `look-for-in-orig' fails Add type for unsafe-cdr svn: r15923
17 lines
614 B
Scheme
17 lines
614 B
Scheme
#lang s-exp "minimal.ss"
|
|
|
|
|
|
|
|
(providing (libs (except scheme/base #%module-begin #%top-interaction with-handlers lambda #%app)
|
|
(except "private/prims.ss")
|
|
(except "private/base-types.ss")
|
|
(except "private/base-types-extra.ss"))
|
|
(basics #%module-begin
|
|
#%top-interaction
|
|
lambda
|
|
#%app))
|
|
(require "private/base-env.ss" "private/base-special-env.ss"
|
|
(for-syntax "private/base-types-extra.ss"))
|
|
(provide (rename-out [with-handlers: with-handlers])
|
|
(for-syntax (all-from-out "private/base-types-extra.ss")))
|