git: 9front

Download patch

ref: e61a2e8fa3012e4d298699c87b675b83d0f429d6
parent: ca8812641c1d6e0c2b4bf16a566e099510fa082c
author: spew <devnull@localhost>
date: Sat Feb 18 04:07:46 EST 2017

games/mix: remove unused variable

--- a/sys/src/games/mix/mix.c
+++ b/sys/src/games/mix/mix.c
@@ -324,7 +324,6 @@
 yylex(void)
 {
 	static Rune buf[11];
-	static int bol;
 	Rune r, *bp, *ep;
 	static char cbuf[100];
 	int isnum;
@@ -349,12 +348,10 @@
 	case '(':
 	case ')':
 	case '=':
-		bol = 0;
 		return r;
 	case '/':
 		r = getr();
 		if(r == '/') {
-			bol = 0;
 			return LSS;
 		} else
 			Bungetrune(&bin);
--