Merge pull request #43529 from teto/traceValSeq

lib.debug: fix traceValSeqFn
This commit is contained in:
Silvan Mosberger 2018-07-15 23:56:30 +02:00 committed by GitHub
commit 32e9cac1e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,7 @@ rec {
(modify depth snip x)) y;
/* A combination of `traceVal` and `traceSeq` */
traceValSeqFn = f: v: traceVal f (builtins.deepSeq v v);
traceValSeqFn = f: v: traceValFn f (builtins.deepSeq v v);
traceValSeq = traceValSeqFn id;
/* A combination of `traceVal` and `traceSeqN`. */