1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

* Fix nix-push.

This commit is contained in:
Eelco Dolstra 2003-11-22 20:39:51 +00:00
parent ab0bc4999a
commit 9486dda115
9 changed files with 56 additions and 63 deletions

View file

@ -53,8 +53,8 @@ static void printNixExpr(EvalState & state, Expr e)
}
}
if (ATgetType(e) == AT_LIST) {
for (ATermIterator i((ATermList) e); i; ++i)
if (atMatch(m, e) >> "List" >> es) {
for (ATermIterator i(es); i; ++i)
printNixExpr(state, evalExpr(state, *i));
return;
}