diff options
author | Maria Matejka <mq@ucw.cz> | 2019-07-15 12:03:47 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-07-15 12:03:47 +0200 |
commit | 1b9db6d4a7d8ab9f3ada5d21f8f05c3c8bf3c2e2 (patch) | |
tree | 649d2361b8c1c67b5c4000a222ffca323b902eea | |
parent | 547be53b8cefc6d346cf13dcedb3e527c3472b06 (diff) |
Filter: Don't write out when re-evaluating filter for internal purposes.
-rw-r--r-- | filter/f-inst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/f-inst.c b/filter/f-inst.c index 685bd426..c0badeab 100644 --- a/filter/f-inst.c +++ b/filter/f-inst.c @@ -345,7 +345,7 @@ FID_INTERPRET_BODY #define pv(i) fstk->vstk[fstk->vcnt - whati->count + (i)] - if (whati->count) + if (whati->count && !(fs->flags & FF_SILENT)) for (uint i=0; i<whati->count; i++) val_format(&(pv(i)), &fs->buf); #undef pv |