only leave ms_std's if prodepth > 0
This commit is contained in:
parent
5ca5b63151
commit
79ce5a13a0
1 changed files with 2 additions and 1 deletions
|
@ -161,7 +161,8 @@ backward() {
|
||||||
goodrom = (rc >= 2);
|
goodrom = (rc >= 2);
|
||||||
break;
|
break;
|
||||||
case ps_mes:
|
case ps_mes:
|
||||||
if ((int) aoff(lnp->l_a.la_arg, 0) == ms_std) {
|
if (prodepth != 0 &&
|
||||||
|
(int) aoff(lnp->l_a.la_arg, 0) == ms_std) {
|
||||||
lnp->l_next = i;
|
lnp->l_next = i;
|
||||||
i = lnp;
|
i = lnp;
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Reference in a new issue