about summary refs log tree commit diff stats
path: root/browse-slack/environment.mu
diff options
context:
space:
mode:
Diffstat (limited to 'browse-slack/environment.mu')
-rw-r--r--browse-slack/environment.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/browse-slack/environment.mu b/browse-slack/environment.mu
index 93365f4a..fdc5713c 100644
--- a/browse-slack/environment.mu
+++ b/browse-slack/environment.mu
@@ -18,8 +18,8 @@ type tab {
   channel-index: int
   # only for type 2
   search-terms: (handle gap-buffer)
-  items: (handle array int)
-  items-first-free: int
+  search-items: (handle array int)
+  search-items-first-free: int
 }
 
 # static buffer sizes in this file:
@@ -782,8 +782,8 @@ fn new-search-tab _env: (addr environment), items: (addr item-list) {
 
 fn search-items _tab: (addr tab), _items: (addr item-list), search-terms: (addr gap-buffer) {
   var tab/edi: (addr tab) <- copy _tab
-  var tab-items-first-free-addr/esi: (addr int) <- get tab, items-first-free
-  var tab-items-ah/eax: (addr handle array int) <- get tab, items
+  var tab-items-first-free-addr/esi: (addr int) <- get tab, search-items-first-free
+  var tab-items-ah/eax: (addr handle array int) <- get tab, search-items
   populate tab-items-ah, 0x100/max-search-results
   var _tab-items/eax: (addr array int) <- lookup *tab-items-ah
   var tab-items/edi: (addr array int) <- copy _tab-items
tle='Blame the previous revision' href='/danisanti/profani-tty/blame/themes/whiteness?id=9516049e28a8c1e0137bba5867cfa7ba56b86d5d'>^
30b5f112 ^








45a26b11 ^





30b5f112 ^
71679a31 ^

45a26b11 ^


45a26b11 ^
30b5f112 ^
2f82f50a ^
86c1c388 ^
1a3dc91e ^
30b5f112 ^


fbc30231 ^

















cd2458c0 ^

0ae975c2 ^

b21edfaa ^
1900402f ^
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