jumaris / cnpack

Automatically exported from code.google.com/p/cnpack
0 stars 0 forks source link

Syntax-Hlighlighting nested if #47

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Following "if"s have different syntax-highlight colors as they have different 
levels.

if True then
begin
  if True then
    result := 1;
end;

Here they do not

if True then
  if True then
    result := 1;

Original issue reported on code.google.com by a.bram...@googlemail.com on 28 Jan 2013 at 10:29