summaryrefslogtreecommitdiff
path: root/src/demo.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2010-03-09 18:28:44 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2010-03-09 18:28:44 -0500
commitba73bb0f4dc54d67c55f0d8c74ebe8ac62344217 (patch)
treecfae7f68e88476d305e0b36b40583cb81a98b2da /src/demo.sml
parent886cb3fa5ae08b3012411dd1243ceace4406978a (diff)
safeGet
Diffstat (limited to 'src/demo.sml')
-rw-r--r--src/demo.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/demo.sml b/src/demo.sml
index 6ae64264..a67411de 100644
--- a/src/demo.sml
+++ b/src/demo.sml
@@ -114,7 +114,8 @@ fun make' {prefix, dirname, guided} =
filterMime = #filterMime combined @ #filterMime urp,
protocol = mergeWith #2 (#protocol combined, #protocol urp),
dbms = mergeWith #2 (#dbms combined, #dbms urp),
- sigFile = mergeWith #2 (#sigFile combined, #sigFile urp)
+ sigFile = mergeWith #2 (#sigFile combined, #sigFile urp),
+ safeGets = []
}
val parse = Compiler.run (Compiler.transform Compiler.parseUrp "Demo parseUrp")