about summary refs log tree commit diff stats
path: root/Manual_tests.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-21 07:20:25 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-21 07:24:44 -0700
commit9c8285bf08656bc1b74c6798b326be7145965170 (patch)
tree10652ffcf47499187291647253aa1ae0f347c819 /Manual_tests.md
parent5a0b6c6a5804c22a7fe62300ff10b8bf890f083a (diff)
downloadtext.love-9c8285bf08656bc1b74c6798b326be7145965170.tar.gz
bugfix
State changes when inserting return are now in sync with other
characters.
Diffstat (limited to 'Manual_tests.md')
-rw-r--r--Manual_tests.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/Manual_tests.md b/Manual_tests.md
index 8c1398e..8d4d410 100644
--- a/Manual_tests.md
+++ b/Manual_tests.md
@@ -11,3 +11,7 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking.
   byte offsets with the suffix `_offset`, and character positions as `_pos`.
   For example, `string.sub` should never use a `_pos` to substring, only an
   `_offset`.
+
+* Some ADT/interface support would be helpful in keeping per-line state in
+  sync. Any change to line data should clear line `fragments` and
+  `screen_line_starting_pos`.