diff --git a/compiler/node.pas b/compiler/node.pas index b398c01711..1255e0ffb0 100644 --- a/compiler/node.pas +++ b/compiler/node.pas @@ -855,12 +855,12 @@ implementation if i in flags then begin if not(first) then - write(',') + write(t,',') else first:=false; write(i); end; - write(']'); + write(t,']'); end;