diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-07T12·27+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-07T12·27+0000 |
commit | 5d4171f7fb548e06ecd2440f57322b3c77f1074e (patch) | |
tree | 06f21a5e6dcf38943f58f7e32f4a23f5bed41da7 /src/store.cc | |
parent | 563afb7fcc9d6aabec9b867372ea8d651fd12e89 (diff) |
* Synchronise terminology with the ICSE paper (e.g., slice -> closure,
fstate -> Nix expression). * Fix src/test.cc.
Diffstat (limited to 'src/store.cc')
-rw-r--r-- | src/store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store.cc b/src/store.cc index 8a3db12ba93e..f05cdf3ba4dd 100644 --- a/src/store.cc +++ b/src/store.cc @@ -246,7 +246,7 @@ string expandId(const FSId & id, const string & target, debug(format("trying substitute %1%") % (string) subId); - realiseSlice(normaliseFState(subId, pending), pending); + realiseClosure(normaliseNixExpr(subId, pending), pending); return expandId(id, target, prefix, pending); } |