From eb8284ddaa66448d369647f68cb9f89b93a187de Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 Oct 2004 17:10:09 +0000 Subject: [PATCH] * Evaluate argument to `import'. --- src/libexpr/primops.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index ade483dc70..a51a5119af 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); }