diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-05-07T14·46+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-05-07T14·46+0000 |
commit | 83dfa898706e1faa491b3a50ea20baf60abda387 (patch) | |
tree | c498fcd4428bd53f41415b027bc9eb5f044c5e95 /src/libexpr/primops.cc | |
parent | 01e58adce0767f1a484d80fcbcf67c7945cbc146 (diff) | |
parent | 4750065ada362bd46e85879975a3148e18df5b0c (diff) |
* Sync with the trunk.
Diffstat (limited to 'src/libexpr/primops.cc')
-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 d33b0030f7aa..a7e7bcdc8615 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -582,7 +582,7 @@ static void prim_toXML(EvalState & state, Value * * args, Value & v) { std::ostringstream out; PathSet context; - printValueAsXML(state, true, *args[0], out, context); + printValueAsXML(state, true, false, *args[0], out, context); mkString(v, out.str(), context); } |