about summary refs log tree commit diff stats
path: root/edit
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-28 14:38:32 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-28 14:38:32 -0700
commit1627d836b46440f57d766b154ec488fa2e5a1e06 (patch)
treeae4823ae28ef829b9aaf5c6e68e636c7b72213d0 /edit
parent4896fd81a50814843680bd03fcba46643f08c95e (diff)
downloadmu-1627d836b46440f57d766b154ec488fa2e5a1e06.tar.gz
3428
Diffstat (limited to 'edit')
-rw-r--r--edit/002-typing.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit/002-typing.mu b/edit/002-typing.mu
index e450abba..68af65ee 100644
--- a/edit/002-typing.mu
+++ b/edit/002-typing.mu
@@ -855,14 +855,14 @@ after <handle-special-character> [
     newline?:bool <- equal c, 10/newline
     break-unless newline?
     <insert-enter-begin>
-    editor <- insert-new-line-and-indent editor, screen
+    editor <- insert-newline-and-indent editor, screen
     <insert-enter-end>
     go-render? <- copy 1/true
     return
   }
 ]
 
-def insert-new-line-and-indent editor:&:editor, screen:&:screen -> editor:&:editor, screen:&:screen, go-render?:bool [
+def insert-newline-and-indent editor:&:editor, screen:&:screen -> editor:&:editor, screen:&:screen, go-render?:bool [
   local-scope
   load-ingredients
   cursor-row:num <- get *editor, cursor-row:offset