aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/eval.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc
index f7911e32b..333ad68eb 100644
--- a/src/libexpr/eval.cc
+++ b/src/libexpr/eval.cc
@@ -126,7 +126,7 @@ void printValue(std::ostream & str, std::set<const void *> & seen, const Value &
break;
case tAttrs: {
if (!v.attrs->empty() && !seen.insert(v.attrs).second)
- str << "<REPEAT>";
+ str << "«repeated»";
else {
str << "{ ";
for (auto & i : v.attrs->lexicographicOrder()) {
@@ -142,7 +142,7 @@ void printValue(std::ostream & str, std::set<const void *> & seen, const Value &
case tList2:
case tListN:
if (v.listSize() && !seen.insert(v.listElems()).second)
- str << "<REPEAT>";
+ str << "«repeated»";
else {
str << "[ ";
for (auto v2 : v.listItems()) {