about summary refs log tree commit diff stats
path: root/edit.mu
diff options
context:
space:
mode:
Diffstat (limited to 'edit.mu')
-rw-r--r--edit.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/edit.mu b/edit.mu
index b04b9645..5518ac4d 100644
--- a/edit.mu
+++ b/edit.mu
@@ -277,14 +277,14 @@ recipe event-loop [
     break-if quit?:boolean  # only in tests
     trace [app], [next-event]
     {
-      t:address:touch-event <- maybe-convert e:event, 2:variant
+      t:address:touch-event <- maybe-convert e:event, touch:variant
       break-unless t:address:touch-event
       editor:address:editor-data <- move-cursor-in-editor editor:address:editor-data, t:address:touch-event/deref
       loop +next-event:label
     }
-    $print e:event
+#?     $print e:event #? 1
     c:address:character <- maybe-convert e:event, text:variant
-    close-console
+#?     close-console #? 1
     assert c:address:character, [event was of unknown type; neither keyboard nor mouse]
     loop
   }
ram <vc@akkartik.com> 2019-07-20 23:59:23 -0700 committer Kartik Agaram <vc@akkartik.com> 2019-07-20 23:59:23 -0700 5431 - starting to translate std lib' href='/akkartik/mu/commit/subx/ntranslate?h=hlt&id=90538f232a31c621323ba1b8b93fad57c555b810'>90538f23 ^
300f4554 ^
90538f23 ^
d9d9ab81 ^


099f0d5d ^

418ea7d3 ^
e97b446a ^
90538f23 ^
6488bfcf ^
90538f23 ^
6488bfcf ^
90538f23 ^
23fd294d ^

6488bfcf ^











90538f23 ^



531f14c9 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53