diff options
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -700,15 +700,9 @@ error: * -f?print action. */ bool eval_fprint(const struct expr *expr, struct eval_state *state) { - CFILE *cfile = expr->cfile; - if (cfile->colors) { - eval_stat(state); - } - - if (cfprintf(cfile, "%pP\n", state->ftwbuf) < 0) { + if (cfprintf(expr->cfile, "%pP\n", state->ftwbuf) < 0) { eval_report_error(state); } - return true; } |