summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4bf6d41)
raw | patch | inline | side by side (parent: 4bf6d41)
author | DeaDDooMER <deaddoomer@deadsoftware.ru> | |
Mon, 20 Jul 2020 17:01:22 +0000 (20:01 +0300) | ||
committer | DeaDDooMER <deaddoomer@deadsoftware.ru> | |
Mon, 20 Jul 2020 17:01:22 +0000 (20:01 +0300) |
src/generic/Dev/Mod/CPR.cp | patch | blob | history |
index b3ef0524cb2474b2bafbbd6249c362ad5c3dac04..8802469cd23daaa568b389b42399ff165fa6cbca 100644 (file)
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.