Beautifier and Multi-Line Comments - Bug?

jking

Member²
If I have a multi-line comment inside of a loop block, the 2nd line of the comment keeps indenting everytime I click the beautifier. I also noticed that this only happens if there is a blank line above the comments.

Code:
begin
  for c in (select *
              from dual)
  loop
    null;
                   <-- It works OK w/o this blank line.
    /*
    Line 1 Comment
    Line 2 Comment
    */
  end loop;
end;
Thanks,
Joe

P.S. Can't wait to see Version 7.
 
We're using version 7.0.1.1066 and this problem still exists. Is this fixed in one of the later versions? If not, is there a version target for fixing it?

Thanks,
Kevin
 
Back
Top