summaryrefslogtreecommitdiff
path: root/sys/src/games
diff options
context:
space:
mode:
authorspew <devnull@localhost>2017-02-18 09:07:46 -0600
committerspew <devnull@localhost>2017-02-18 09:07:46 -0600
commit412b7501e4888573c42951388c58f09795a44904 (patch)
tree311cdad10fcca916aa970c8d809baae8b3575d91 /sys/src/games
parent064a987bd8b3f3172bce73522cab9b21587bbc0e (diff)
games/mix: remove unused variable
Diffstat (limited to 'sys/src/games')
-rw-r--r--sys/src/games/mix/mix.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/src/games/mix/mix.c b/sys/src/games/mix/mix.c
index dc9809465..1672afaaf 100644
--- a/sys/src/games/mix/mix.c
+++ b/sys/src/games/mix/mix.c
@@ -324,7 +324,6 @@ long
yylex(void)
{
static Rune buf[11];
- static int bol;
Rune r, *bp, *ep;
static char cbuf[100];
int isnum;
@@ -349,12 +348,10 @@ Loop:
case '(':
case ')':
case '=':
- bol = 0;
return r;
case '/':
r = getr();
if(r == '/') {
- bol = 0;
return LSS;
} else
Bungetrune(&bin);