racket/collects/mzlib/scribblings/transcr.scrbl
Matthew Flatt e958a5af7a more mzlib scribbling
svn: r8621
2008-02-11 14:27:42 +00:00

23 lines
590 B
Racket

#lang scribble/doc
@(require "common.ss")
@mzlib[#:mode title transcr]
The @scheme[transcript-on] and @scheme[transcript-off] procedures of
@schememodname[mzscheme] always raise
@scheme[exn:fail:unsupported]. The @schememodname[mzlib/transcr]
library provides working versions of @scheme[transcript-on] and
@scheme[transcript-off].
@(define-syntax-rule (go)
(begin
(require (for-label mzlib/transcr))
@deftogether[(
@defproc[(transcript-on [filename any/c]) any]
@defproc[(transcript-off) any]
)]{
Starts/stops recording a transcript at @scheme[filename].}))
@(go)