scope: Selector;
top: Context;
skip-: BOOLEAN;
+ used-: BOOLEAN;
PROCEDURE err (n: SHORTINT);
BEGIN DevCPM.err(n)
VAR c: Context;
BEGIN
NEW(c); c.next := top; c.alt := FALSE; c.val := cond; c.ref := 0; top := c;
- INC(fold); skip := ~Printable()
+ INC(fold); skip := ~Printable(); used := TRUE
END If;
PROCEDURE Else;
BEGIN
ch := " "; sym := eof; name := "";
fold := 0; top := NIL; scope := NIL;
- skip := FALSE
+ skip := FALSE; used := FALSE
END Close;
PROCEDURE Init*;
If(TRUE);
NEW(scope);
Set("TRUE", TRUE);
- Set("FALSE", FALSE)
+ Set("FALSE", FALSE);
+ used := FALSE
END Init;
END DevCPR.