mirror of
https://github.com/tmate-io/tmate.git
synced 2025-06-30 14:20:34 +02:00
Remove comments
This commit is contained in:
4
status.c
4
status.c
@ -581,10 +581,6 @@ status_message_set(struct client *c, const char *fmt, ...)
|
||||
free(msg);
|
||||
}
|
||||
|
||||
#ifdef TMATE
|
||||
/* FIXME tmux: session can be NULL */
|
||||
#endif
|
||||
|
||||
delay = options_get_number(c->session->options, "display-time");
|
||||
if (delay > 0) {
|
||||
tv.tv_sec = delay / 1000;
|
||||
|
6
window.c
6
window.c
@ -983,12 +983,6 @@ window_pane_read_callback(__unused struct bufferevent *bufev, void *data)
|
||||
|
||||
new_size = EVBUFFER_LENGTH(evb) - wp->pipe_off;
|
||||
if (wp->pipe_fd != -1 && new_size > 0) {
|
||||
#ifdef TMATE
|
||||
/* FIXME tmux:
|
||||
* - new_data
|
||||
* + new_data + wp->pipe_off;
|
||||
*/
|
||||
#endif
|
||||
new_data = EVBUFFER_DATA(evb);
|
||||
bufferevent_write(wp->pipe_event, new_data, new_size);
|
||||
}
|
||||
|
Reference in New Issue
Block a user