diff options
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index ce38e2ab9213..c4f5d7f5d64d 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -515,7 +515,7 @@ Expr evalExpr2(EvalState & state, Expr e) try { return concatStrings(state, args); } catch (Error & e) { - e.addPrefix(format("in a string concatenation: ")); + e.addPrefix(format("in a string concatenation:\n")); throw; } } @@ -527,7 +527,7 @@ Expr evalExpr2(EvalState & state, Expr e) ATermList l2 = evalList(state, e2); return makeList(ATconcat(l1, l2)); } catch (Error & e) { - e.addPrefix(format("in a list concatenation: ")); + e.addPrefix(format("in a list concatenation:\n")); throw; } } |