about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-05 08:09:14 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-05 08:09:14 -0700
commitad780e6c3824a0e28e9b22898e3e584de7adec15 (patch)
treebd41bc309649d616ae5e84f0739ab2009f1f9950
parent65490af49862c90b7a31d8a00bda5eb1e41c3191 (diff)
downloadmu-ad780e6c3824a0e28e9b22898e3e584de7adec15.tar.gz
2144
-rw-r--r--edit.mu25
1 files changed, 0 insertions, 25 deletions
diff --git a/edit.mu b/edit.mu
index c3049fac..ad93af8a 100644
--- a/edit.mu
+++ b/edit.mu
@@ -5097,31 +5097,6 @@ recipe render-all [
   reply screen/same-as-ingredient:0
 ]
 
-recipe render-minimal [
-  local-scope
-  screen:address <- next-ingredient
-  env:address:programming-environment-data <- next-ingredient
-  hide-screen screen
-  recipes:address:editor-data <- get *env, recipes:offset
-  current-sandbox:address:editor-data <- get *env, current-sandbox:offset
-  sandbox-in-focus?:boolean <- get *env, sandbox-in-focus?:offset
-  {
-    break-if sandbox-in-focus?
-    screen <- render-recipes screen, env
-    cursor-row:number <- get *recipes, cursor-row:offset
-    cursor-column:number <- get *recipes, cursor-column:offset
-  }
-  {
-    break-unless sandbox-in-focus?
-    screen <- render-sandbox-side screen, env
-    cursor-row:number <- get *current-sandbox, cursor-row:offset
-    cursor-column:number <- get *current-sandbox, cursor-column:offset
-  }
-  screen <- move-cursor screen, cursor-row, cursor-column
-  show-screen screen
-  reply screen/same-as-ingredient:0
-]
-
 recipe render-recipes [
   local-scope
   screen:address <- next-ingredient