diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-26T17·10+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-26T17·10+0000 |
commit | eb8284ddaa66448d369647f68cb9f89b93a187de (patch) | |
tree | c072a560f25c7856cc243b7e0f5bd7250c76789a | |
parent | 033d7c65930c7613fa21510f03984d764fcdb7d3 (diff) |
* Evaluate argument to `import'.
-rw-r--r-- | src/libexpr/primops.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index ade483dc703d..a51a5119af3d 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -9,7 +9,8 @@ static Expr primImport(EvalState & state, const ATermVector & args) { ATMatcher m; string path; - if (!(atMatch(m, args[0]) >> "Path" >> path)) + Expr fn = evalExpr(state, args[0]); + if (!(atMatch(m, fn) >> "Path" >> path)) throw Error("path expected"); return evalFile(state, path); } |