From f53746f80145a184b5e4a6974175e2f92f49dcba Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 9 Jun 2017 00:13:39 -0700 Subject: 3901 --- html/065duplex_list.mu.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html/065duplex_list.mu.html') diff --git a/html/065duplex_list.mu.html b/html/065duplex_list.mu.html index c91132d4..f4191f54 100644 --- a/html/065duplex_list.mu.html +++ b/html/065duplex_list.mu.html @@ -731,7 +731,7 @@ if ('onhashchange' in window) { 669 load-ingredients 670 buf:&:buffer:char <- new-buffer 80 671 buf <- to-buffer in, buf -672 result <- buffer-to-array buf +672 result <- buffer-to-array buf 673 ] 674 675 # variant of 'to-text' which stops printing after a few elements (and so is robust to cycles) @@ -740,7 +740,7 @@ if ('onhashchange' in window) { 678 load-ingredients 679 buf:&:buffer:char <- new-buffer 80 680 buf <- to-buffer in, buf, 6 # max elements to display -681 result <- buffer-to-array buf +681 result <- buffer-to-array buf 682 ] 683 684 def to-buffer in:&:duplex-list:_elem, buf:&:buffer:char -> buf:&:buffer:char [ -- cgit 1.4.1-2-gfad0 =main&id=c2fde79632589b9885363b872c12385cb28b3355'>root/tools/iso/kernel.soso/interrupt.asm
blob: 5610ca559de641e5bc550f051870eb944eae7cdf (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