fprettify icon indicating copy to clipboard operation
fprettify copied to clipboard

fprettify is not idempotent for nested statements with label

Open e-kwsm opened this issue 3 years ago • 0 comments

  • fprettify: 0.3.7
program main
12345 if (.false.) then
      if (.false.) then
      end if
   end if
end program

fprettify formats the above to below

program main
12345 if (.false.) then
   if (.false.) then
   end if
   end if
end program

If applied again, fprettify formats the latter to the former.

e-kwsm avatar Mar 30 '21 02:03 e-kwsm