We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the following input:
! Fails: Labelled casetest:select case(i) case (1) write(*,*) 'nay' end select casetest ! Works: Not labelled select case(i) case (1) write(*,*) 'yay' end select
processed with python3 fprettify -i 4 test.F90 results in:
python3 fprettify -i 4 test.F90
! Fails: Labelled casetest:select case(i) case (1) write (*, *) 'nay' end select casetest ! Works: Not labelled select case (i) case (1) write (*, *) 'yay' end select
Note that the first case statement is not correctly indented.
Incidentally labelled do statements work just fine!
PS: this is a great tool - thanks for making it available
The text was updated successfully, but these errors were encountered:
Fixed indenting of labelled select statements fortran-lang#175
6858ab7
No branches or pull requests
the following input:
processed with
python3 fprettify -i 4 test.F90
results in:Note that the first case statement is not correctly indented.
Incidentally labelled do statements work just fine!
PS: this is a great tool - thanks for making it available
The text was updated successfully, but these errors were encountered: