fixed bug with linenumber counting

This commit is contained in:
ceriel 1988-06-29 14:05:37 +00:00
parent 3ed0f85ba7
commit 1f07fc05a4

View file

@ -251,12 +251,11 @@ EM_getinstr(p)
i = em_ptyp[j]; i = em_ptyp[j];
if (j == PAR_NO) { /* No arguments */ if (j == PAR_NO) { /* No arguments */
p->em_argtype = 0; p->em_argtype = 0;
break;
} }
#ifndef COMPACT #ifndef COMPACT
if (j == PAR_B) i = ptyp(sp_ilb2); if (j == PAR_B) i = ptyp(sp_ilb2);
#endif COMPACT #endif COMPACT
getarg(i, &(p->em_arg)); if (j != PAR_NO) getarg(i, &(p->em_arg));
#ifndef COMPACT #ifndef COMPACT
if (j == PAR_B) { if (j == PAR_B) {
p->em_cst = p->em_ilb; p->em_cst = p->em_ilb;