From b19cebc513c2d513ee1f91b5ce12f30c5dd095f2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 23 Aug 2006 15:46:27 +0000 Subject: [PATCH] * Quotes. --- src/libexpr/primops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])); }