about summary refs log tree commit diff stats
path: root/archive/1.vm.arc/buffered-stdin.mu
diff options
context:
space:
mode:
Diffstat (limited to 'archive/1.vm.arc/buffered-stdin.mu')
-rw-r--r--archive/1.vm.arc/buffered-stdin.mu28
1 files changed, 0 insertions, 28 deletions
diff --git a/archive/1.vm.arc/buffered-stdin.mu b/archive/1.vm.arc/buffered-stdin.mu
deleted file mode 100644
index 9a7bc7ae..00000000
--- a/archive/1.vm.arc/buffered-stdin.mu
+++ /dev/null
@@ -1,28 +0,0 @@
-; reads lines, prints them back when you hit 'enter'
-; dies if you wait a while, because so far we never free memory
-(function main [
-  (default-space:space-address <- new space:literal 30:literal)
-  (cursor-mode) ;? 1
-  ; hook up stdin
-  (stdin:channel-address <- init-channel 1:literal)
-  (fork-helper send-keys-to-stdin:fn nil:literal/globals nil:literal/limit nil:literal/keyboard stdin:channel-address)
-  ; buffer stdin
-  (buffered-stdin:channel-address <- init-channel 1:literal)
-  (fork-helper buffer-lines:fn nil:literal/globals nil:literal/limit stdin:channel-address buffered-stdin:channel-address)
-  { begin
-    ; now read characters from the buffer until 'enter' is typed
-    (s:string-address <- new "? ")
-    (print-string nil:literal/terminal s:string-address)
-    { begin
-      (x:tagged-value buffered-stdin:channel-address/deref <- read buffered-stdin:channel-address)
-      (c:character <- maybe-coerce x:tagged-value character:literal)
-;?       ($print (("AAA " literal))) ;? 1
-;?       ($print c:character) ;? 1
-;?       ($print (("\n" literal))) ;? 1
-      (print-character nil:literal/terminal c:character)
-      (line-done?:boolean <- equal c:character ((#\newline literal)))
-      (loop-unless line-done?:boolean)
-    }
-    (loop)
-  }
-])
d gridmenu' href='/acidbong/suckless/dwm/commit/Makefile?h=5.7&id=dbf7e03996032a6def3b8e97468b78d6da9e8c88'>dbf7e03 ^
1076f2b



42277b1 ^
5d3fd37 ^
a2d56f6 ^
99b126d ^

1076f2b
650a1fb ^
3d48f33 ^

1076f2b

4d55eee ^
db876f9 ^
dbf7e03 ^

4d55eee ^


10d13f0 ^
4d55eee ^


dbf7e03 ^

4d55eee ^
dbf7e03 ^
4d55eee ^


dbf7e03 ^
ad4962c ^
4d55eee ^
dbf7e03 ^

4d55eee ^



dc5c070 ^

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