about summary refs log tree commit diff stats
path: root/309stream.subx
diff options
context:
space:
mode:
Diffstat (limited to '309stream.subx')
-rw-r--r--309stream.subx10
1 files changed, 2 insertions, 8 deletions
diff --git a/309stream.subx b/309stream.subx
index 43cb1b01..c39a7146 100644
--- a/309stream.subx
+++ b/309stream.subx
@@ -98,10 +98,7 @@ $write-to-stream:end:
     c3/return
 
 $write-to-stream:abort:
-    (draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0 "write-to-stream: stream full" 3 0)  # 3=cyan
-    {
-      eb/jump loop/disp8
-    }
+    (abort "write-to-stream: stream full")
     # never gets here
 
 read-from-stream:  # s: (addr stream _), out: (addr byte), n: int
@@ -151,10 +148,7 @@ $read-from-stream:end:
     c3/return
 
 $read-from-stream:abort:
-    (draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0 "read-from-stream: stream empty" 3 0)  # 3=cyan
-    {
-      eb/jump loop/disp8
-    }
+    (abort "read-from-stream: stream empty")
     # never gets here
 
 stream-first:  # s: (addr stream byte) -> result/eax: byte