about summary refs log tree commit diff stats
path: root/sandbox
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-05-13 18:39:41 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-05-13 18:39:41 -0700
commit6f4ce8654319ec2d5099d5d01a63d8e2e5ea0c6f (patch)
tree0ddcc5cc5fa366942c97fd123b4efc9a8cd08866 /sandbox
parent05a22c024d0ffe3382f94ccacec6718cb10ef78f (diff)
downloadmu-6f4ce8654319ec2d5099d5d01a63d8e2e5ea0c6f.tar.gz
3857
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/004-programming-environment.mu12
1 files changed, 0 insertions, 12 deletions
diff --git a/sandbox/004-programming-environment.mu b/sandbox/004-programming-environment.mu
index 29db733b..0f1280e3 100644
--- a/sandbox/004-programming-environment.mu
+++ b/sandbox/004-programming-environment.mu
@@ -243,15 +243,3 @@ def update-cursor screen:&:screen, current-sandbox:&:editor, env:&:environment -
   cursor-column:num <- get *current-sandbox, cursor-column:offset
   screen <- move-cursor screen, cursor-row, cursor-column
 ]
-
-# ctrl-l - redraw screen (just in case it printed junk somehow)
-
-after <global-type> [
-  {
-    redraw-screen?:bool <- equal c, 12/ctrl-l
-    break-unless redraw-screen?
-    screen <- render-all screen, env:&:environment, render
-    sync-screen screen
-    loop +next-event
-  }
-]