diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-23T15·46+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-23T15·46+0000 |
commit | b19cebc513c2d513ee1f91b5ce12f30c5dd095f2 (patch) | |
tree | 8cd8e954cf8871d2a1d1296a89e77fcf2db2c77f /src | |
parent | 38f18aa6d418515e42b688fa9b3e4f3ab61bb89e (diff) |
* Quotes.
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/primops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 2bc5459d1306..3d8d9b8ad789 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])); } |