lexical #4/19, the `else' can take that job (unconditionally)

This commit is contained in:
rlar 2012-07-31 20:39:10 +02:00
parent 80191f3d44
commit 348dc2d7d1
1 changed files with 1 additions and 6 deletions

View File

@ -193,18 +193,13 @@ gotchar:
// they won't be accessed any more (see `goto done')
bzero(buf, NEW_BSIZE_SP);
i = 0;
// cw->wl_prev is the recent cw
// thus this wl_next has been NULL per assumtion vrom above
cw->wl_prev->wl_next = NULL;
tfree(cw);
} else {
}
if (cw->wl_prev) {
cw->wl_prev->wl_next = NULL;
tfree(cw);
} else {
cw->wl_word = NULL;
}
}
goto done;
case '\'':