diff src/elab_print.sml @ 44:a9f3ce2d1b9b

Elaborating functor applications
author Adam Chlipala <adamc@hcoop.net>
date Thu, 19 Jun 2008 17:04:08 -0400
parents b3fbbc6cb1e5
children 0a5c312de09a
line wrap: on
line diff
--- a/src/elab_print.sml	Thu Jun 19 16:43:24 2008 -0400
+++ b/src/elab_print.sml	Thu Jun 19 17:04:08 2008 -0400
@@ -413,6 +413,10 @@
                  space,
                  p_str env' str]
         end
+      | StrApp (str1, str2) => box [p_str env str1,
+                                    string "(",
+                                    p_str env str2,
+                                    string ")"]
       | StrError => string "<ERROR>"
 
 and p_file env file =