diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-06-20 12:55:55 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-06-20 12:55:55 +0000 |
commit | a7917430d8bb41792e1a8c1d6c6066763925a500 (patch) | |
tree | 29420a0cbd04cdd82ac85054d36cb3e26a675f84 | |
parent | 0f00c3b47a700834f8cfab2537a37292cd8e5796 (diff) | |
download | rtmux-a7917430d8bb41792e1a8c1d6c6066763925a500.tar.gz rtmux-a7917430d8bb41792e1a8c1d6c6066763925a500.tar.bz2 rtmux-a7917430d8bb41792e1a8c1d6c6066763925a500.zip |
Remove a couple of unused variables from redbrain at gcc dot gnu dot org.
-rw-r--r-- | server-client.c | 2 | ||||
-rw-r--r-- | tty.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/server-client.c b/server-client.c index 8b972c90..0e095af0 100644 --- a/server-client.c +++ b/server-client.c @@ -345,7 +345,6 @@ server_client_handle_key(struct client *c, int key) struct session *s; struct window *w; struct window_pane *wp; - struct options *oo; struct timeval tv; struct key_binding *bd; int xtimeout, isprefix; @@ -364,7 +363,6 @@ server_client_handle_key(struct client *c, int key) w = c->session->curw->window; wp = w->active; - oo = &c->session->options; /* Special case: number keys jump to pane in identify mode. */ if (c->flags & CLIENT_IDENTIFY && key >= '0' && key <= '9') { @@ -668,7 +668,6 @@ tty_write( struct window_pane *wp = ctx->wp; struct client *c; struct session *s; - struct options *oo; u_int i; /* wp can be NULL if updating the screen but not the terminal. */ @@ -693,7 +692,6 @@ tty_write( continue; if (c->tty.flags & TTY_FREEZE) continue; - oo = &s->options; ctx->xoff = wp->xoff; ctx->yoff = wp->yoff; |