From da9d9486155b38a4099694b0eb48f6e997ab736d Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 23 Jun 2022 11:41:29 -0700 Subject: [PATCH] record one more case I can't automatically detect --- Manual_tests.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Manual_tests.md b/Manual_tests.md index 8d4d410..75b37d8 100644 --- a/Manual_tests.md +++ b/Manual_tests.md @@ -15,3 +15,8 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking. * 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`. + +* Some inputs get processed in love.textinput and some in love.keypressed. + Several bugs have arisen due to destructive interference between the two for + some key chord. I wish I could guarantee that the two sets are disjoint. But + perhaps I'm not thinking about this right.