diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 2bc5459d13..3d8d9b8ad7 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -631,7 +631,7 @@ static Expr primDependencyClosure(EvalState & state, const ATermVector & args) static Expr primAbort(EvalState & state, const ATermVector & args) { - throw Abort(format("evaluation aborted with the following error message: %1%") % + throw Abort(format("evaluation aborted with the following error message: `%1%'") % evalString(state, args[0])); }