about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-26 23:51:23 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-26 23:51:23 -0700
commitabab2fdefd520fffa23ab0cdd1212a06e93a0773 (patch)
tree3229e0f03fe8476298a83a3ff364c05684a808a9 /apps
parentfec64dbc765339e8962767381ef144c07ba7050b (diff)
downloadmu-abab2fdefd520fffa23ab0cdd1212a06e93a0773.tar.gz
6882
Diffstat (limited to 'apps')
-rw-r--r--apps/tile/environment.mu8
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index 2fba132b..ca54ba67 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -407,14 +407,6 @@ fn clear-canvas _env: (addr environment) {
   var _repl-col/ecx: (addr int) <- get env, code-separator-col
   var repl-col/ecx: int <- copy *_repl-col
   draw-vertical-line screen, 1, *nrows, repl-col
-  start-reverse-video screen
-  print-string screen, " ctrl-r "
-  reset-formatting screen
-  print-string screen, " rename  "
-  start-reverse-video screen
-  print-string screen, " ctrl-s "
-  reset-formatting screen
-  print-string screen, " tbd  "
   move-cursor screen, 3, 2
   print-string screen, "x 2* = 2 x *"
 }