From 387abcf6ed6a1e6ab2002e7e741be446519fdba9 Mon Sep 17 00:00:00 2001 From: "german.gonzalez@kdu.cl" Date: Sat, 19 Jun 2021 15:47:43 -0400 Subject: [PATCH] missing parentheses in condition --- Unpaws.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Unpaws.pas b/Unpaws.pas index 1991123..e42241a 100644 --- a/Unpaws.pas +++ b/Unpaws.pas @@ -512,7 +512,7 @@ ELSE begin Write(FOut,'{',c,'}'); if c=8 then begin LastPrintedChar:=c; Dec(Xpos);end else if (ColorCodes=0) and (XPos=31) and (QuillVersion<>0) then Begin Write(FOut,' ');XPos:=0; End - else if not c in[6,13,16,17,18,19,20,21,22,23] then inc(XPos); + else if not (c in[6,13,16,17,18,19,20,21,22,23]) then inc(XPos); end END;