about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--apps/calls.subx2
-rw-r--r--html/apps/calls.subx.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/calls.subx b/apps/calls.subx
index c07de7da..00d7c3ac 100644
--- a/apps/calls.subx
+++ b/apps/calls.subx
@@ -183,7 +183,7 @@ emit-call:  # out : (address buffered-file), words : (address stream slice)
     #   # emit pushes
     #   while true
     #     if (curr <= min) break
-    #     if (*curr == '%' || *curr == '*')
+    #     if *curr in '%' '*'
     #       write-buffered(out, "ff 6/subop/push ")
     #       write-slice-buffered(out, curr)
     #       write-buffered(out, "/imm32\n")
diff --git a/html/apps/calls.subx.html b/html/apps/calls.subx.html
index 2004977e..78ba551b 100644
--- a/html/apps/calls.subx.html
+++ b/html/apps/calls.subx.html
@@ -242,7 +242,7 @@ if ('onhashchange' in window) {
 <span id="L183" class="LineNr">183 </span>    <span class="subxComment">#   # emit pushes</span>
 <span id="L184" class="LineNr">184 </span>    <span class="subxComment">#   while true</span>
 <span id="L185" class="LineNr">185 </span>    <span class="subxComment">#     if (curr &lt;= min) break</span>
-<span id="L186" class="LineNr">186 </span>    <span class="subxComment">#     if (*curr == '%' || *curr == '*')</span>
+<span id="L186" class="LineNr">186 </span>    <span class="subxComment">#     if *curr in '%' '*'</span>
 <span id="L187" class="LineNr">187 </span>    <span class="subxComment">#       write-buffered(out, &quot;ff 6/subop/push &quot;)</span>
 <span id="L188" class="LineNr">188 </span>    <span class="subxComment">#       write-slice-buffered(out, curr)</span>
 <span id="L189" class="LineNr">189 </span>    <span class="subxComment">#       write-buffered(out, &quot;/imm32\n&quot;)</span>
8'>148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206