aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/iflow.sml
diff options
context:
space:
mode:
authorGravatar Ziv Scully <ziv@mit.edu>2015-09-21 10:16:55 -0400
committerGravatar Ziv Scully <ziv@mit.edu>2015-09-21 10:16:55 -0400
commit3e42cccfaef1157ca14cd102959b867c996503a9 (patch)
treef6f9a9c57702517edc66c096a50efe0a6e7dca46 /src/iflow.sml
parent68879bbb4bf58e4709c96ba6904071ce5d24a906 (diff)
Revert to revision 2222.
Diffstat (limited to 'src/iflow.sml')
-rw-r--r--src/iflow.sml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iflow.sml b/src/iflow.sml
index 6ed7e69d..b8346baa 100644
--- a/src/iflow.sml
+++ b/src/iflow.sml
@@ -1900,7 +1900,7 @@ fun check (file : file) =
val exptd = foldl (fn ((d, _), exptd) =>
case d of
DExport (_, _, n, _, _, _) => IS.add (exptd, n)
- | _ => exptd) IS.empty (#decls file)
+ | _ => exptd) IS.empty (#1 file)
fun decl (d, loc) =
case d of
@@ -2164,7 +2164,7 @@ fun check (file : file) =
| _ => ()
in
- app decl (#decls file)
+ app decl (#1 file)
end
val check = fn file =>