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:
2
putty.h
2
putty.h
@ -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);
|
||||
|
Reference in New Issue
Block a user