about summary refs log tree commit diff stats
path: root/prototypes
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-29 19:14:19 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-29 19:14:19 -0700
commit222548962c9ed85c9d5057757287d0b0b069af02 (patch)
tree25f2d36f9fd1b175523e603685d2173c3e38171e /prototypes
parent12e2b93a4bec024f3000adafb013d9490c821ae8 (diff)
downloadmu-222548962c9ed85c9d5057757287d0b0b069af02.tar.gz
6599
Diffstat (limited to 'prototypes')
-rw-r--r--prototypes/browse/10.mu2
-rw-r--r--prototypes/browse/11.mu2
-rw-r--r--prototypes/browse/12.mu2
-rw-r--r--prototypes/browse/13.mu2
-rw-r--r--prototypes/browse/14.mu2
-rw-r--r--prototypes/browse/15-headers-broken.mu2
-rw-r--r--prototypes/browse/4-render-page.mu2
-rw-r--r--prototypes/browse/5.mu2
-rw-r--r--prototypes/browse/6.mu2
-rw-r--r--prototypes/browse/7.mu2
-rw-r--r--prototypes/browse/8-multiple-pages.mu2
-rw-r--r--prototypes/browse/9-bold.mu2
12 files changed, 12 insertions, 12 deletions
diff --git a/prototypes/browse/10.mu b/prototypes/browse/10.mu
index 88c4d5c9..a07f8aa8 100644
--- a/prototypes/browse/10.mu
+++ b/prototypes/browse/10.mu
@@ -142,7 +142,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/11.mu b/prototypes/browse/11.mu
index 1fa9e980..86440eb9 100644
--- a/prototypes/browse/11.mu
+++ b/prototypes/browse/11.mu
@@ -138,7 +138,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/12.mu b/prototypes/browse/12.mu
index 49be7ae8..d3871d40 100644
--- a/prototypes/browse/12.mu
+++ b/prototypes/browse/12.mu
@@ -141,7 +141,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/13.mu b/prototypes/browse/13.mu
index 895f959b..47b2b398 100644
--- a/prototypes/browse/13.mu
+++ b/prototypes/browse/13.mu
@@ -142,7 +142,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/14.mu b/prototypes/browse/14.mu
index 6168b69c..4f4229af 100644
--- a/prototypes/browse/14.mu
+++ b/prototypes/browse/14.mu
@@ -140,7 +140,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/15-headers-broken.mu b/prototypes/browse/15-headers-broken.mu
index 5644f52d..30461744 100644
--- a/prototypes/browse/15-headers-broken.mu
+++ b/prototypes/browse/15-headers-broken.mu
@@ -182,7 +182,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/4-render-page.mu b/prototypes/browse/4-render-page.mu
index 79457aa0..77fd6b7f 100644
--- a/prototypes/browse/4-render-page.mu
+++ b/prototypes/browse/4-render-page.mu
@@ -48,7 +48,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/5.mu b/prototypes/browse/5.mu
index 06fa719b..99d176b5 100644
--- a/prototypes/browse/5.mu
+++ b/prototypes/browse/5.mu
@@ -50,7 +50,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/6.mu b/prototypes/browse/6.mu
index 99080c54..d71db2fb 100644
--- a/prototypes/browse/6.mu
+++ b/prototypes/browse/6.mu
@@ -61,7 +61,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/7.mu b/prototypes/browse/7.mu
index dd95d67f..db4a7ac9 100644
--- a/prototypes/browse/7.mu
+++ b/prototypes/browse/7.mu
@@ -65,7 +65,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/8-multiple-pages.mu b/prototypes/browse/8-multiple-pages.mu
index f35a1d1e..25ad0863 100644
--- a/prototypes/browse/8-multiple-pages.mu
+++ b/prototypes/browse/8-multiple-pages.mu
@@ -81,7 +81,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }
diff --git a/prototypes/browse/9-bold.mu b/prototypes/browse/9-bold.mu
index c2d9bfaa..fca50472 100644
--- a/prototypes/browse/9-bold.mu
+++ b/prototypes/browse/9-bold.mu
@@ -118,7 +118,7 @@ fn clear toprow: int, leftcol: int, botrow: int, rightcol: int {
     {
       compare col, rightcol
       break-if->=
-      print-string " "
+      print-string-to-screen " "
       col <- increment
       loop
     }