remove usage of concurrent ml, deciding that we prefer to run everything in the main thread instead

This commit is contained in:
2025-10-17 23:08:16 +01:00
parent 0799128f7c
commit 111e0cf66d
15 changed files with 43 additions and 134 deletions

View File

@@ -6,7 +6,6 @@ struct
| KEY_ENTER
| KEY_BACKSPACE
| RESIZE_EVENT of int * int
| WITH_SEARCH_LIST of PersistentVector.t * Time.time
| ARROW_LEFT
| ARROW_UP
| ARROW_RIGHT

View File

@@ -1,2 +1 @@
structure MailboxType =
struct datatype t = DRAW of DrawMsg.t | SEARCH of SearchMsg.t end
structure MailboxType = struct datatype t = DRAW of DrawMsg.t end

View File

@@ -1,2 +0,0 @@
structure SearchMsg =
struct type t = LineGap.t * int vector vector * Time.time end