diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-02-26 13:33:24 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-02-26 13:33:24 -0800 |
commit | e616059d70926a8712134072988edb6ae0cae17a (patch) | |
tree | 8e09a06a499d7e06b30cc5af53917a35a6f06737 | |
parent | bff0fa450814fcadc4b35e3e740e8d9ee6370d11 (diff) | |
download | mu-e616059d70926a8712134072988edb6ae0cae17a.tar.gz |
2714 - apply 2604 to sandbox/
-rw-r--r-- | sandbox/001-editor.mu | 2 |
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 } |