summaryrefslogtreecommitdiff
path: root/src/expl_print.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/expl_print.sml')
-rw-r--r--src/expl_print.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expl_print.sml b/src/expl_print.sml
index 60075a70..d3638d18 100644
--- a/src/expl_print.sml
+++ b/src/expl_print.sml
@@ -345,7 +345,7 @@ fun p_datatype env (x, n, xs, cons) =
p_list_sep (box [space, string "|", space])
(fn (x, n, NONE) => if !debug then (string (x ^ "__" ^ Int.toString n))
else string x
- | (x, _, SOME t) => box [if !debug then (string (x ^ "__" ^ Int.toString n))
+ | (x, n, SOME t) => box [if !debug then (string (x ^ "__" ^ Int.toString n))
else string x, space, string "of", space, p_con env t])
cons]
end