summaryrefslogtreecommitdiff
path: root/src/compiler.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-12-23 14:27:12 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-12-23 14:27:12 -0500
commitae8d0bfba9c05cf407f7591b34d8d10c157a0454 (patch)
tree60a375d03e5ee57ad539b1708207f516fd085561 /src/compiler.sml
parent1466bbaa78fe224dd227fb50b2a6a21bcd10a74b (diff)
Don't relify in bigLibs; fix some memory bugs in transactionals
Diffstat (limited to 'src/compiler.sml')
-rw-r--r--src/compiler.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.sml b/src/compiler.sml
index 88046256..fc764205 100644
--- a/src/compiler.sml
+++ b/src/compiler.sml
@@ -561,7 +561,7 @@ fun parseUrp' accLibs fname =
| "library" => if accLibs then
libs := pu (relify arg) :: !libs
else
- bigLibs := relify arg :: !bigLibs
+ bigLibs := arg :: !bigLibs
| "path" =>
(case String.fields (fn ch => ch = #"=") arg of
[n, v] => pathmap := M.insert (!pathmap, n, v)