mirror of
https://github.com/tmux/tmux.git
synced 2025-01-05 23:38:48 +00:00
Unused variables. Found by lint, no binary change.
This commit is contained in:
parent
a03ae97fbf
commit
947fabc751
@ -1,4 +1,4 @@
|
|||||||
/* $Id: screen-redraw.c,v 1.36 2009-05-04 17:58:27 nicm Exp $ */
|
/* $OpenBSD: screen-redraw.c,v 1.2 2009/06/25 05:56:44 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -67,7 +67,6 @@ screen_redraw_screen(struct client *c)
|
|||||||
struct window *w = c->session->curw->window;
|
struct window *w = c->session->curw->window;
|
||||||
struct tty *tty = &c->tty;
|
struct tty *tty = &c->tty;
|
||||||
struct window_pane *wp;
|
struct window_pane *wp;
|
||||||
struct screen *s;
|
|
||||||
u_int i, j, sx, sy;
|
u_int i, j, sx, sy;
|
||||||
int status, has_acs;
|
int status, has_acs;
|
||||||
u_char choriz, cvert, cbackg;
|
u_char choriz, cvert, cbackg;
|
||||||
@ -110,7 +109,6 @@ screen_redraw_screen(struct client *c)
|
|||||||
|
|
||||||
tty_reset(tty);
|
tty_reset(tty);
|
||||||
|
|
||||||
s = wp->screen;
|
|
||||||
sx = wp->sx;
|
sx = wp->sx;
|
||||||
sy = wp->sy;
|
sy = wp->sy;
|
||||||
|
|
||||||
|
6
tty.c
6
tty.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: tty.c,v 1.5 2009/06/24 16:01:02 nicm Exp $ */
|
/* $OpenBSD: tty.c,v 1.6 2009/06/25 05:56:44 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -769,9 +769,7 @@ tty_cmd_clearendofscreen(
|
|||||||
struct tty *tty, struct window_pane *wp, unused va_list ap)
|
struct tty *tty, struct window_pane *wp, unused va_list ap)
|
||||||
{
|
{
|
||||||
struct screen *s = wp->screen;
|
struct screen *s = wp->screen;
|
||||||
u_int i, j, oy;
|
u_int i, j;
|
||||||
|
|
||||||
oy = wp->yoff;
|
|
||||||
|
|
||||||
tty_reset(tty);
|
tty_reset(tty);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user