aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-13 15:10:29 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-13 15:10:29 -0400
commit767101824af1fe41b6e50791b21112c6a8d7457f (patch)
tree3e0c53a6512eead8a697c4cbb7972474cc65d80f /src/libexpr/eval.cc
parente5c589d271c62f57cd2e7eb7d9841f67d8845ff4 (diff)
Avoid concatenating lists of one string
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r--src/libexpr/eval.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc
index cb7c22e29..fadfb3b53 100644
--- a/src/libexpr/eval.cc
+++ b/src/libexpr/eval.cc
@@ -965,7 +965,7 @@ void ExprConcatStrings::eval(EvalState & state, Env & env, Value & v)
isPath = vStr.type == tPath;
first = false;
}
-
+
s << state.coerceToString(vStr, context, false, !isPath);
}