From be1a0e62f727bb5734402b58813939be13978de4 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Mon, 25 Apr 2011 10:21:33 -0500 Subject: [PATCH] added docs for current-contract-region --- collects/scribblings/reference/contracts.scrbl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/collects/scribblings/reference/contracts.scrbl b/collects/scribblings/reference/contracts.scrbl index 6d8a6bb88e..9364928fb2 100644 --- a/collects/scribblings/reference/contracts.scrbl +++ b/collects/scribblings/reference/contracts.scrbl @@ -1,6 +1,7 @@ #lang scribble/doc @(require "mz.rkt") -@(require (for-label syntax/modcollapse)) +@(require (for-label syntax/modcollapse + racket/stxparam)) @(define contract-eval (lambda () @@ -1081,6 +1082,13 @@ The @racket[define-struct/contract] form only allows a subset of the (make-salmon #f 'pacific) ]} +@defidform[current-contract-region]{ + Bound by @racket[define-syntax-parameter], this contains + information about the current contract region, used by + the above forms to determine the candidates for blame + assignment. +} + @subsection{Low-level Contract Boundaries} @declare-exporting-ctc[racket/contract/base]