From 5396e24cba8390ca2d70d99c7e8772eee4ec3a11 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Tue, 18 May 2021 13:01:59 -0700 Subject: . --- html/linux/400.mu.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'html/linux/400.mu.html') diff --git a/html/linux/400.mu.html b/html/linux/400.mu.html index f8250d21..9b1270b4 100644 --- a/html/linux/400.mu.html +++ b/html/linux/400.mu.html @@ -231,9 +231,9 @@ if ('onhashchange' in window) { 176 sig enable-keyboard-type-mode 177 sig read-key-from-real-keyboard -> _/eax: grapheme 178 sig read-line-from-real-keyboard out: (addr stream byte) -179 sig open filename: (addr array byte), write?: boolean, out: (addr handle buffered-file) -180 sig populate-buffered-file-containing contents: (addr array byte), out: (addr handle buffered-file) -181 sig new-buffered-file out: (addr handle buffered-file) +179 sig open filename: (addr array byte), write?: boolean, out: (addr handle buffered-file) +180 sig populate-buffered-file-containing contents: (addr array byte), out: (addr handle buffered-file) +181 sig new-buffered-file out: (addr handle buffered-file) 182 #sig size in: (addr array _) -> _/eax: int 183 184 sig stream-empty? s: (addr stream _) -> _/eax: boolean -- cgit 1.4.1-2-gfad0 6'>ui/grid.go
blob: 3c375ee3608dd682a6346b93eac4314d0491f5af (plain) (blame)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191