You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I stumbled onto this where the end procedure name is not indented. Same goes for the contents of the procedure.
MWE
start with
submodule( foo_module) submodule1
implicit nonecontainsmoduleprocedure foo1
WRITE(*,"(A)") "testing :: "//trim(a) //"::"//trim(b)
end procedure foo1
end submodule submodule1
expected output is
submodule( foo_module) submodule1
implicit nonecontainsmoduleprocedure foo1
WRITE(*,"(A)") "testing :: "//trim(a) //"::"//trim(b)
end procedure foo1
end submodule submodule1
findent output (v4.1.2.pre11) is
submodule( foo_module) submodule1
implicit nonecontainsmoduleprocedure foo1
WRITE(*,"(A)") "testing :: "//trim(a) //"::"//trim(b)
end procedure foo1
end submodule submodule1
Something else I spotted which might be worth opening a separate issue for is that if you run -Rr or -RR it relabels to the wrong name. Am I doing something wrong here?
submodule( foo_module) submodule1
implicit nonecontainsmoduleprocedure foo1
WRITE(*,"(A)") "testing :: "//trim(a) //"::"//trim(b)
end submodule submodule1
end submodule submodule1
The text was updated successfully, but these errors were encountered:
gnikit
changed the title
Bug: end procedure not indented
Bug: end procedure in submodule not indented
Oct 4, 2021
I stumbled onto this where the
end procedure name
is not indented. Same goes for the contents of theprocedure
.MWE
start with
expected output is
findent output (v4.1.2.pre11) is
Something else I spotted which might be worth opening a separate issue for is that if you run
-Rr
or-RR
it relabels to the wrong name. Am I doing something wrong here?The text was updated successfully, but these errors were encountered: