aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/expl_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2013-08-19 12:25:32 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2013-08-19 12:25:32 -0400
commitf718e640c3cbe6a891519364992117f49ca333fa (patch)
treeb7581cc191267590b2ee407d91161bd2950e3604 /src/expl_print.sml
parent42fab45125992244c499ec5ac64e0376109bd4cb (diff)
Allow [where con] to descend within submodule structure; open submodule constraints while checking later signature items
Diffstat (limited to 'src/expl_print.sml')
-rw-r--r--src/expl_print.sml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expl_print.sml b/src/expl_print.sml
index d89b0512..a830dccb 100644
--- a/src/expl_print.sml
+++ b/src/expl_print.sml
@@ -569,13 +569,13 @@ and p_sgn env (sgn, loc) =
string ":",
space,
p_sgn (E.pushStrNamed env x n sgn) sgn']
- | SgnWhere (sgn, x, c) => box [p_sgn env sgn,
+ | SgnWhere (sgn, ms, x, c) => box [p_sgn env sgn,
space,
string "where",
space,
string "con",
space,
- string x,
+ p_list_sep (string ".") string (ms @ [x]),
space,
string "=",
space,