summaryrefslogtreecommitdiff
path: root/src/core_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-05-16 12:41:33 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-05-16 12:41:33 -0400
commit768fd72de4842c23813cd45bfae4918c7395e0c1 (patch)
treeb05b4f028035c9fbcc9f2477a69002c8b0034312 /src/core_print.sml
parent79655b086c036d07806d0c345ffc9e6683891fe4 (diff)
Fix a Core_untangle bug that missed closure variable references; XHTMLize
Diffstat (limited to 'src/core_print.sml')
-rw-r--r--src/core_print.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core_print.sml b/src/core_print.sml
index e9d8951e..8dcb3228 100644
--- a/src/core_print.sml
+++ b/src/core_print.sml
@@ -576,7 +576,7 @@ fun p_decl env (dAll as (d, _) : decl) =
space,
string "constraints",
space,
- p_exp env ce]
+ p_exp (E.declBinds env dAll) ce]
| DSequence (x, n, s) => box [string "sequence",
space,
p_named x n,