From e78ff7b070d031c078a38e4729c38ea3f09a0734 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 20 Oct 2016 15:04:01 -0700 Subject: 3526 --- lambda-to-mu.mu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lambda-to-mu.mu') diff --git a/lambda-to-mu.mu b/lambda-to-mu.mu index d7220b1d..6c358d9f 100644 --- a/lambda-to-mu.mu +++ b/lambda-to-mu.mu @@ -186,7 +186,7 @@ def parse in:&:stream:char -> out:&:cell, in:&:stream:char [ { break-if pair? # atom - b:&:buffer <- new-buffer 30 + buf:&:buffer <- new-buffer 30 { done?:bool <- end-of-stream? in break-if done? @@ -197,10 +197,10 @@ def parse in:&:stream:char -> out:&:cell, in:&:stream:char [ done? <- space? c break-if done? c <- read in - b <- append b, c + buf <- append buf, c loop } - s:text <- buffer-to-array b + s:text <- buffer-to-array buf out <- new-atom s } { -- cgit 1.4.1-2-gfad0 n> Soul of a tiny new machine. More thorough tests → More comprehensible and rewrite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log tree commit diff stats
path: root/tools/iso/kernel.soso/framebuffer.c
blob: e57dd67d93775f5220bc23273e870c52235f8ec2 (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