aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/source_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2013-09-26 16:22:06 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2013-09-26 16:22:06 -0400
commit71cc64ad35debb1950827e4be6c6a3d5cfc216fc (patch)
treecad67680fb49f89df78b84d6266344d710cb0d62 /src/source_print.sml
parented7e4c443e611490ce83c8ee6bedea14c636011c (diff)
Get -root working properly again
Diffstat (limited to 'src/source_print.sml')
-rw-r--r--src/source_print.sml36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/source_print.sml b/src/source_print.sml
index c8a38922..ce095542 100644
--- a/src/source_print.sml
+++ b/src/source_print.sml
@@ -571,24 +571,24 @@ fun p_decl ((d, _) : decl) =
string "=",
space,
p_sgn sgn]
- | DStr (x, NONE, _, str) => box [string "structure",
- space,
- string x,
- space,
- string "=",
- space,
- p_str str]
- | DStr (x, SOME sgn, _, str) => box [string "structure",
- space,
- string x,
- space,
- string ":",
- space,
- p_sgn sgn,
- space,
- string "=",
- space,
- p_str str]
+ | DStr (x, NONE, _, str, _) => box [string "structure",
+ space,
+ string x,
+ space,
+ string "=",
+ space,
+ p_str str]
+ | DStr (x, SOME sgn, _, str, _) => box [string "structure",
+ space,
+ string x,
+ space,
+ string ":",
+ space,
+ p_sgn sgn,
+ space,
+ string "=",
+ space,
+ p_str str]
| DFfiStr (x, sgn, _) => box [string "extern",
space,
string "structure",