diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-16T13·44+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-04-16T13·44+0000 |
commit | 02c1dac90934e1b833c4d6bd9280bda27c146d80 (patch) | |
tree | e84f70d93fd75d162099275d3facd6ec9037844c /src/nix-env/nix-env.cc | |
parent | 04c4bd3624b094043ff0f2410c1e376a51f457f7 (diff) |
* In an nested `with' where the inner with is a variable (`with ...;
with someVar; ...'), the contents of the variable would be clobbered. (The attributes in the outer `with' were added to the variable.)
Diffstat (limited to 'src/nix-env/nix-env.cc')
-rw-r--r-- | src/nix-env/nix-env.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc index d44517ba678a..f9f828fe91fc 100644 --- a/src/nix-env/nix-env.cc +++ b/src/nix-env/nix-env.cc @@ -1089,6 +1089,7 @@ static void opQuery(Globals & globals, foreach (vector<DrvInfo>::iterator, i, elems2) { try { + startNest(nest, lvlDebug, format("outputting query result `%1%'") % i->attrPath); /* For table output. */ Strings columns; |