diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-19 17:04:08 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-19 17:04:08 -0400 |
commit | 03ecfc6bbbff1492662930a708a1e9be685ef023 (patch) | |
tree | fb39f4aa097d27b272943f849bfb97eaa75b160f /src/source_print.sml | |
parent | 9386a9382eda9bd19e99c80057398c593aaf812b (diff) |
Elaborating functor applications
Diffstat (limited to 'src/source_print.sml')
-rw-r--r-- | src/source_print.sml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/source_print.sml b/src/source_print.sml index c3a333e8..1522e6da 100644 --- a/src/source_print.sml +++ b/src/source_print.sml @@ -375,6 +375,10 @@ and p_str (str, _) = string "=>", space, p_str str] + | StrApp (str1, str2) => box [p_str str1, + string "(", + p_str str2, + string ")"] val p_file = p_list_sep newline p_decl |