91 lines
2.8 KiB
Scheme
91 lines
2.8 KiB
Scheme
(module mz scheme/base
|
|
(require scribble/struct
|
|
scribble/manual
|
|
scribble/eval
|
|
scribble/decode
|
|
scheme/contract
|
|
"../icons.ss")
|
|
|
|
(provide (all-from-out scribble/manual)
|
|
(all-from-out scribble/eval)
|
|
(all-from-out scheme/contract))
|
|
|
|
(require (for-label scheme))
|
|
(provide (for-label (all-from-out scheme)))
|
|
|
|
(define AllUnix "Unix and Mac OS X")
|
|
(provide AllUnix)
|
|
|
|
(provide note-lib)
|
|
(define-syntax note-lib
|
|
(syntax-rules ()
|
|
[(_ lib #:use-sources (src ...) . more)
|
|
(begin
|
|
(declare-exporting lib scheme #:use-sources (src ...))
|
|
(defmodule*/no-declare (lib)
|
|
(t "The bindings documented in this section are provided by the "
|
|
(schememodname lib)
|
|
" and "
|
|
(schememodname scheme)
|
|
" libraries, but not " (schememodname scheme/base)
|
|
"."
|
|
. more)))]
|
|
[(_ lib . more)
|
|
(note-lib lib #:use-sources () . more)]))
|
|
|
|
|
|
(provide note-lib-only)
|
|
(define-syntax note-lib-only
|
|
(syntax-rules ()
|
|
[(_ lib #:use-sources (src ...) . more)
|
|
(defmodule lib #:use-sources (src ...)
|
|
(t "The bindings documented in this section are provided by the "
|
|
(schememodname lib)
|
|
" library, not " (schememodname scheme/base)
|
|
" or " (schememodname scheme)
|
|
"."
|
|
. more))]
|
|
[(_ lib . more)
|
|
(note-lib-only lib #:use-sources () . more)]))
|
|
|
|
(define (*exnraise s)
|
|
(make-element #f (list s " exception is raised")))
|
|
(define-syntax exnraise
|
|
(syntax-rules ()
|
|
[(_ s) (*exnraise (scheme s))]))
|
|
(define-syntax Exn
|
|
(syntax-rules ()
|
|
[(_ s) (scheme s)]))
|
|
(provide exnraise Exn)
|
|
|
|
(provide refalso moreref Guide guideintro guidesecref
|
|
HonuManual)
|
|
|
|
(define (refalso tag . s)
|
|
(apply margin-note
|
|
(decode-content (append (list magnify (secref tag) " also provides information on ")
|
|
s
|
|
(list ".")))))
|
|
|
|
(define (moreref tag . s)
|
|
(apply margin-note
|
|
(decode-content (append (list magnify (secref tag) " provides more information on ")
|
|
s
|
|
(list ".")))))
|
|
|
|
(define (guidesecref s)
|
|
(secref #:doc '(lib "scribblings/guide/guide.scrbl") s))
|
|
|
|
(define (guideintro tag . s)
|
|
(apply margin-note
|
|
(decode-content (append (list finger (guidesecref tag) " in " Guide " introduces ")
|
|
s
|
|
(list ".")))))
|
|
|
|
(define Guide
|
|
(other-manual '(lib "scribblings/guide/guide.scrbl")))
|
|
|
|
(define HonuManual
|
|
(other-manual '(lib "scribblings/honu/honu.scrbl"))))
|
|
|