fortran-lang / fprettify

auto-formatter for modern fortran source code

Home Page:https://pypi.python.org/pypi/fprettify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Variable names confused w/ relational operators

dbroemmel opened this issue · comments

Relational operators may be confused with variable names in longer conditional statements. Take, e.g.

     if ( a .gt. b .and. ne .lt. c)

which will be re-formatted to

     if (a .gt. b.and .ne. lt.c)

breaking code.