git: 9front

Download patch

ref: fabb45a00587694a2b5c1864a5cadf1519aae1e8
parent: 99d9fc9a5e35da8f507941ae544a58642bd7b289
author: spew <devnull@localhost>
date: Wed Oct 19 18:15:51 EDT 2016

mpc: remove unused yylval type

--- a/sys/src/cmd/mpc.y
+++ b/sys/src/cmd/mpc.y
@@ -64,7 +64,6 @@
 {
 	Sym*	sval;
 	Node*	node;
-	long	lval;
 }
 
 %type	<node>	name num args expr bool block elif stmnt stmnts
@@ -80,7 +79,7 @@
 %left	'^'
 %right	'('
 
-%token	<lval>	MOD IF ELSE WHILE BREAK 
+%token	MOD IF ELSE WHILE BREAK 
 %token	<sval>	NAME NUM
 
 %%
--