diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-03-11 21:20:09 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-03-11 21:20:09 -0400 |
commit | 7dcc04f288c27a29e18ad2c0b55d07b218655deb (patch) | |
tree | fa4207a3986c005d10f5f95eb8be8dad5f9363c2 /src | |
parent | fe082f71b4e7069908b96efbc7c1645e1d266350 (diff) |
Handle recursive RPC handlers
Diffstat (limited to 'src')
-rw-r--r-- | src/rpcify.sml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcify.sml b/src/rpcify.sml index 8d309a82..f8aee6c7 100644 --- a/src/rpcify.sml +++ b/src/rpcify.sml @@ -142,7 +142,7 @@ fun frob file = decl = fn x => x} st d in - (#export_decls st @ [d], + (d :: #export_decls st, {exported = #exported st, export_decls = []}) end |