diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-26T17·04+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-26T17·04+0000 |
commit | 033d7c65930c7613fa21510f03984d764fcdb7d3 (patch) | |
tree | e96154af0e2abb13a866fa35152eab50cead7130 | |
parent | 9fa07b376dd52ee8bbcc074e59d36af3f3f2536d (diff) |
* Doh!
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 4454aaec452f..35b9cae00b7c 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -348,7 +348,7 @@ Expr evalExpr2(EvalState & state, Expr e) return makeString(s1 + s2); else if (atMatch(m, e1) >> "Path" >> s1 && atMatch(m, e2) >> "Path" >> s2) - return makeString(canonPath(s1 + "/" + s2)); + return makePath(canonPath(s1 + "/" + s2)); else throw Error("wrong argument types in `+' operator"); } |