1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Remove 'is_stderr' parameter from term_data.

It wasn't actually used for anything, and removing it now will save me
deciding what to do with it in the next commit.
This commit is contained in:
Simon Tatham
2021-09-16 14:50:59 +01:00
parent d1dc1e927c
commit a45ae81797
5 changed files with 6 additions and 6 deletions

View File

@ -1900,7 +1900,7 @@ void term_reconfig(Terminal *, Conf *);
void term_request_copy(Terminal *, const int *clipboards, int n_clipboards);
void term_request_paste(Terminal *, int clipboard);
void term_seen_key_event(Terminal *);
size_t term_data(Terminal *, bool is_stderr, const void *data, size_t len);
size_t term_data(Terminal *, const void *data, size_t len);
void term_provide_backend(Terminal *term, Backend *backend);
void term_provide_logctx(Terminal *term, LogContext *logctx);
void term_set_focus(Terminal *term, bool has_focus);