aboutsummaryrefslogtreecommitdiff
path: root/files.f90
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2020-06-08 14:36:34 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2020-06-08 14:36:34 -0400
commit52915ba4bcb8f82a7d8249df07130e4fc0e5bd32 (patch)
tree25051156bc8fb7a4c45566a6b62f73e0da1a6eb0 /files.f90
parent48512f5d2e180d2086162cdf06c96098e6de96d7 (diff)
downloadLR-87-52915ba4bcb8f82a7d8249df07130e4fc0e5bd32.tar.gz
LR-87-52915ba4bcb8f82a7d8249df07130e4fc0e5bd32.zip
Line wrapping now computed only once for proportional text unless requested by the renderer, providing better performance.
Diffstat (limited to 'files.f90')
-rw-r--r--files.f902
1 files changed, 2 insertions, 0 deletions
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()