about summary refs log tree commit diff stats
path: root/edit.mu
diff options
context:
space:
mode:
Diffstat (limited to 'edit.mu')
-rw-r--r--edit.mu9
1 files changed, 0 insertions, 9 deletions
diff --git a/edit.mu b/edit.mu
index 3010fbd4..ed1b2710 100644
--- a/edit.mu
+++ b/edit.mu
@@ -232,15 +232,6 @@ recipe render [
     break-unless before-cursor?
     *cursor-row <- copy row
     *cursor-column <- copy column
-    # line not wrapped but cursor outside bounds? wrap cursor
-    {
-      too-far-right?:boolean <- greater-than *cursor-column, right
-      break-unless too-far-right?
-      *cursor-column <- copy left
-      *cursor-row <- add *cursor-row, 1
-      above-screen-bottom?:boolean <- lesser-than *cursor-row, screen-height
-      assert above-screen-bottom?, [unimplemented: wrapping cursor past bottom of screen]
-    }
     *before-cursor <- copy prev
   }
   # clear rest of screen