mothra: remove unused local variables from pl_nextc()
This commit is contained in:
parent
3df2b18398
commit
ae41f49f09
1 changed files with 1 additions and 2 deletions
|
@ -219,8 +219,7 @@ void pl_putback(Hglob *g, int c){
|
||||||
}
|
}
|
||||||
int pl_nextc(Hglob *g){
|
int pl_nextc(Hglob *g){
|
||||||
int c;
|
int c;
|
||||||
int n;
|
|
||||||
Rune r;
|
|
||||||
if(g->heof) return EOF;
|
if(g->heof) return EOF;
|
||||||
if(g->npeekc!=0) return g->peekc[--g->npeekc];
|
if(g->npeekc!=0) return g->peekc[--g->npeekc];
|
||||||
c=pl_readc(g);
|
c=pl_readc(g);
|
||||||
|
|
Loading…
Reference in a new issue