about summary refs log tree commit diff stats
path: root/prototypes/browse/13.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-29 19:16:36 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-29 19:16:36 -0700
commit6c7f7abdb867084f1e7555105cfa140eae4f6372 (patch)
tree47918b44ecc85fcf3573189a3574f59014787514 /prototypes/browse/13.mu
parent222548962c9ed85c9d5057757287d0b0b069af02 (diff)
downloadmu-6c7f7abdb867084f1e7555105cfa140eae4f6372.tar.gz
6600
Diffstat (limited to 'prototypes/browse/13.mu')
-rw-r--r--prototypes/browse/13.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/prototypes/browse/13.mu b/prototypes/browse/13.mu
index 47b2b398..a4d2801e 100644
--- a/prototypes/browse/13.mu
+++ b/prototypes/browse/13.mu
@@ -99,7 +99,7 @@ $update-attributes:check-state: {
           {
             break-if-!=
             # r->current-state == 1 && c == '*' => print c, then normal text
-            print-byte c
+            print-byte-to-screen c
             col <- increment
             reset-formatting
             start-color 0xec, 7  # 236 = darkish gray
@@ -110,7 +110,7 @@ $update-attributes:check-state: {
           {
             break-if-!=
             # r->current-state == 1 && c == '_' => print c, then normal text
-            print-byte c
+            print-byte-to-screen c
             col <- increment
             reset-formatting
             start-color 0xec, 7  # 236 = darkish gray
@@ -123,7 +123,7 @@ $update-attributes:check-state: {
       compare c, 0xa  # newline
       break-if-=  # no need to print newlines
       # print c
-      print-byte c
+      print-byte-to-screen c
       col <- increment
       loop
     }  # $char-loop
@@ -171,6 +171,6 @@ fn dump in: (addr buffered-file) {
   var c/eax: byte <- read-byte-buffered in
   compare c, 0xffffffff  # EOF marker
   break-if-=
-  print-byte c
+  print-byte-to-screen c
   loop
 }