about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-08-23T15·46+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-08-23T15·46+0000
commitb19cebc513c2d513ee1f91b5ce12f30c5dd095f2 (patch)
tree8cd8e954cf8871d2a1d1296a89e77fcf2db2c77f /src
parent38f18aa6d418515e42b688fa9b3e4f3ab61bb89e (diff)
* Quotes.
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/primops.cc2
1 files changed, 1 insertions, 1 deletions
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]));
 }