about summary refs log tree commit diff stats
path: root/subx/apps
diff options
context:
space:
mode:
Diffstat (limited to 'subx/apps')
-rw-r--r--subx/apps/crenshaw2-1.subx3
1 files changed, 2 insertions, 1 deletions
diff --git a/subx/apps/crenshaw2-1.subx b/subx/apps/crenshaw2-1.subx
index 6857c6a4..09f551c3 100644
--- a/subx/apps/crenshaw2-1.subx
+++ b/subx/apps/crenshaw2-1.subx
@@ -73,7 +73,8 @@ $main:end:
 
 # Read a sequence of digits into 'out'. Abort if there are none, or if there
 # are too many to fit in 'out'.
-# 'Look' must be initialized with the current byte.
+# Input comes from the global variable 'Look' (first byte) and the argument
+# 'in' (rest).
 get-num:  # in : (address buffered-file), out : (address stream), err : fd or (address stream), ed : (address exit-descriptor) -> <void>
   # pseudocode:
   #   if !is-digit?(Look) expected(ed, err, "integer")
am <vc@akkartik.com> 2015-05-05 21:17:24 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-05-05 21:17:24 -0700 1276 - make C++ version the default' href='/akkartik/mu/commit/vimrc.vim?h=hlt&id=b96af395b9af2ff9df94b3e82213171f30827c8d'>b96af395 ^
d1262cd6 ^
49620728 ^
b96af395 ^

94fa5c95 ^
9a81d746 ^
3e1349d2 ^




01ce563d ^

3e1349d2 ^
1ae4e0d9 ^
3e1349d2 ^




e59a91b7 ^

a8f47b4a ^

b3cdcdd4 ^
a9817844 ^



b96af395 ^






bc394aaf ^

3dfeaaff ^













694d8485 ^
14da19a2 ^
694d8485 ^
14da19a2 ^
694d8485 ^
bc394aaf ^
857ba192 ^




399f5c13 ^
857ba192 ^
399f5c13 ^
5e5f569c ^

5f21a5e7 ^


5e5f569c ^






674cf583 ^





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