From 078369b8c5500d614a8e640a2cb5a54ef3c585ef Mon Sep 17 00:00:00 2001 From: Yorhel Date: Sun, 20 Sep 2015 07:53:05 +0200 Subject: [PATCH] quit.c: Remove two unused variables --- src/quit.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/quit.c b/src/quit.c index 6594ded..8a0d9d3 100644 --- a/src/quit.c +++ b/src/quit.c @@ -27,14 +27,11 @@ #include -/* extern? */ int page, start; - int quit_key(int ch) { switch(ch) { case 'y': case 'Y': return 1; - break; default: pstate = ST_BROWSE; } @@ -49,7 +46,5 @@ void quit_draw() { } void quit_init() { - page = 1; - start = 0; pstate = ST_QUIT; }