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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user