23 lines
590 B
Racket
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)
|