fortran-src icon indicating copy to clipboard operation
fortran-src copied to clipboard

Generalise Rewriter to work for both fixed and free form code.

Open RaoulHC opened this issue 1 year ago • 0 comments

At the moment the rewriter is hard coded to split lines according to fixed form, which end at column 72, and use + on column 5 for continuations. This gives incorrect replacements for free form code that are longer than 72 columns, as lines end at column 132 and use an appended & to signify the next line will be a continuation.

RaoulHC avatar May 12 '23 11:05 RaoulHC