From 52915ba4bcb8f82a7d8249df07130e4fc0e5bd32 Mon Sep 17 00:00:00 2001 From: Jeffrey Armstrong Date: Mon, 8 Jun 2020 14:36:34 -0400 Subject: Line wrapping now computed only once for proportional text unless requested by the renderer, providing better performance. --- files.f90 | 2 ++ 1 file changed, 2 insertions(+) (limited to 'files.f90') diff --git a/files.f90 b/files.f90 index 9da1ae8..c09e535 100644 --- a/files.f90 +++ b/files.f90 @@ -187,6 +187,7 @@ contains call read_line_text(unit_number, first_line%text, iostatus) first_line%next => null() + first_line%breaks => null() walker=>first_line @@ -196,6 +197,7 @@ contains allocate(next_line) next_line%next => null() + next_line%breaks => null() walker%next => next_line next_line => null() -- cgit v1.2.3