progress fixing compile errors resulting from adding 'bufferModifyTime' field (fixed normal-mode move expressions)

This commit is contained in:
2025-08-20 12:50:39 +01:00
parent 642814fb36
commit c21d1b8205
7 changed files with 57 additions and 63 deletions

View File

@@ -2,6 +2,6 @@ structure AppUpdate =
struct
open AppType
fun update (app, msg) =
case #mode app of NORMAL_MODE str => NormalMode.update (app, str, msg)
fun update (app, msg, time) =
case #mode app of NORMAL_MODE str => NormalMode.update (app, str, msg, time)
end