mothra: remove unused local variables from pl_nextc()

This commit is contained in:
cinap_lenrek 2014-02-16 19:40:50 +01:00
parent 3df2b18398
commit ae41f49f09

View file

@ -219,8 +219,7 @@ void pl_putback(Hglob *g, int c){
}
int pl_nextc(Hglob *g){
int c;
int n;
Rune r;
if(g->heof) return EOF;
if(g->npeekc!=0) return g->peekc[--g->npeekc];
c=pl_readc(g);