aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/value
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/value')
-rw-r--r--src/libexpr/value/context.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/value/context.hh b/src/libexpr/value/context.hh
index 9f1d59317..998b70e36 100644
--- a/src/libexpr/value/context.hh
+++ b/src/libexpr/value/context.hh
@@ -20,8 +20,8 @@ public:
: Error("")
{
raw = raw_;
- auto hf = hintfmt(args...);
- err.msg = hintfmt("Bad String Context element: %1%: %2%", normaltxt(hf.str()), raw);
+ auto hf = HintFmt(args...);
+ err.msg = HintFmt("Bad String Context element: %1%: %2%", Uncolored(hf.str()), raw);
}
};