*** empty log message ***
This commit is contained in:
parent
c6b3fb3aef
commit
74be3a448f
1 changed files with 17 additions and 12 deletions
|
@ -62,17 +62,17 @@ LLerror(t) {
|
|||
return;
|
||||
}
|
||||
#endif
|
||||
#ifdef LL_USERHOOK
|
||||
LL_USERHOOK(t);
|
||||
LLread();
|
||||
#endif LL_USERHOOK
|
||||
if ((LLcsymb = LLindex[LLsymb]) < 0) {
|
||||
LLmessage(0);
|
||||
LLread();
|
||||
}
|
||||
i = LLindex[t];
|
||||
LLtcnt[i]++;
|
||||
if (LLdoskip()) /* nothing */;
|
||||
#ifdef LL_USERHOOK
|
||||
if (LLdoskip(t)) /* nothing */;
|
||||
#else
|
||||
if (LLskip()) /* nothing */;
|
||||
#endif
|
||||
LLtcnt[i]--;
|
||||
if (LLsymb != t) LLmessage(t);
|
||||
}
|
||||
|
@ -95,14 +95,11 @@ LLnext(n) {
|
|||
|
||||
LLskip() {
|
||||
#ifdef LL_USERHOOK
|
||||
LL_USERHOOK(0);
|
||||
LLread();
|
||||
#endif LL_USERHOOK
|
||||
return LLdoskip();
|
||||
return LLdoskip(0);
|
||||
}
|
||||
|
||||
LLdoskip()
|
||||
{
|
||||
LLdoskip(exp) {
|
||||
#endif LL_USERHOOK
|
||||
register int i;
|
||||
int retval;
|
||||
int LLi, LLb;
|
||||
|
@ -117,8 +114,16 @@ LLdoskip()
|
|||
if (LLsets[LL_SSIZE*i+LLi] & LLb) return retval;
|
||||
}
|
||||
}
|
||||
retval = 1;
|
||||
#ifdef LL_USERHOOK
|
||||
{
|
||||
int old = LLsymb;
|
||||
LL_USERHOOK(exp);
|
||||
LLread();
|
||||
if (LLsymb != old) continue;
|
||||
}
|
||||
#endif LL_USERHOOK
|
||||
LLmessage(0);
|
||||
retval = 1;
|
||||
LLread();
|
||||
}
|
||||
/* NOTREACHED */
|
||||
|
|
Loading…
Reference in a new issue