about summary refs log tree commit diff stats
path: root/sandbox/002-typing.mu
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/002-typing.mu')
-rw-r--r--sandbox/002-typing.mu2
1 files changed, 0 insertions, 2 deletions
diff --git a/sandbox/002-typing.mu b/sandbox/002-typing.mu
index 88079641..2f1051c1 100644
--- a/sandbox/002-typing.mu
+++ b/sandbox/002-typing.mu
@@ -704,7 +704,6 @@ after <insert-character-special-case> [
     {
       below-screen?:boolean <- greater-or-equal cursor-row, screen-height
       break-unless below-screen?
-      <scroll-down>
     }
     go-render? <- copy 1/true
     return
@@ -852,7 +851,6 @@ def insert-new-line-and-indent editor:address:editor-data, screen:address:screen
   {
     below-screen?:boolean <- greater-or-equal cursor-row, screen-height  # must be equal, never greater
     break-unless below-screen?
-    <scroll-down>
     go-render? <- copy 1/true
     cursor-row <- subtract cursor-row, 1  # bring back into screen range
     *editor <- put *editor, cursor-row:offset, cursor-row