about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--sandbox/001-editor.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/001-editor.mu b/sandbox/001-editor.mu
index c83b7f3a..d338b4bb 100644
--- a/sandbox/001-editor.mu
+++ b/sandbox/001-editor.mu
@@ -242,7 +242,7 @@ recipe clear-line-delimited screen:address:shared:screen, column:number, right:n
   {
     done?:boolean <- greater-than column, right
     break-if done?
-    screen <- print screen, space, 0/color/unused, bg-color
+    screen <- print screen, space, 7/white, bg-color  # foreground color is mostly unused except if the cursor shows up at this cell
     column <- add column, 1
     loop
   }