From 4bf0828527818456e972b146be82e9cdda2dda6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Axel=20S=C3=B8gaard?= Date: Sun, 25 Mar 2018 21:38:40 +0200 Subject: [PATCH] Provide special? from scribble/text/output (#165) Specials are used to represent entities such as nbsp, so the predicate special? needs to be exported for users of scribble/text to recognize such elements. It is no longer possible to use the contract - since the contract has effectively been bypassed. --- scribble-text-lib/scribble/text/output.rkt | 1 + 1 file changed, 1 insertion(+) diff --git a/scribble-text-lib/scribble/text/output.rkt b/scribble-text-lib/scribble/text/output.rkt index 90eb78da..ed10c86d 100644 --- a/scribble-text-lib/scribble/text/output.rkt +++ b/scribble-text-lib/scribble/text/output.rkt @@ -3,6 +3,7 @@ racket/contract/base) (provide + special? outputable/c (contract-out [output (->* (outputable/c) (output-port?) void?)]))