Skip to content

Commit

Permalink
Remove isatty check from filename_formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed Jul 11, 2024
1 parent c79a553 commit 12df679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source_files/filename_formatter/lex.yy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,7 @@ static void yy_init_buffer(YY_BUFFER_STATE b, FILE *file)
b->yy_bs_column = 0;
}

b->yy_is_interactive = file ? (isatty(fileno(file)) > 0) : 0;
b->yy_is_interactive = 0;

errno = oerrno;
}
Expand Down

0 comments on commit 12df679

Please sign in to comment.