removed the limitation on number of include directories,

some bug fixes,
sets now have a constant and a variable part
This commit is contained in:
ceriel
1987-05-11 14:38:37 +00:00
parent 46100e2a95
commit 9b723f428e
10 changed files with 102 additions and 72 deletions

View File

@@ -207,7 +207,7 @@ close_scope(flag)
assert(sc != 0);
if (flag) {
DO_DEBUG(options['S'], PrScopeDef(sc->sc_def));
DO_DEBUG(options['S'],(print("List of definitions in currently ended scope:\n"), DumpScope(sc->sc_def)));
if (flag & SC_CHKPROC) chk_proc(sc->sc_def);
if (flag & SC_CHKFORW) chk_forw(&(sc->sc_def));
if (flag & SC_REVERSE) Reverse(&(sc->sc_def));
@@ -216,10 +216,9 @@ close_scope(flag)
}
#ifdef DEBUG
PrScopeDef(df)
DumpScope(df)
register struct def *df;
{
print("List of definitions in currently ended scope:\n");
while (df) {
PrDef(df);
df = df->df_nextinscope;