diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-03-15 19:43:09 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-03-15 19:43:09 -0700 |
commit | 951d135507b31097757e2b8ed433f7285bde4f27 (patch) | |
tree | bc0da48d36704cdd817dfe39f26270f299f597ca /edit | |
parent | fadb576efca5586fc67bdc3f69fc32e86fc3bb01 (diff) | |
download | mu-951d135507b31097757e2b8ed433f7285bde4f27.tar.gz |
3797
Diffstat (limited to 'edit')
-rw-r--r-- | edit/001-editor.mu | 1 | ||||
-rw-r--r-- | edit/004-programming-environment.mu | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/edit/001-editor.mu b/edit/001-editor.mu index 803f02c8..dab475fb 100644 --- a/edit/001-editor.mu +++ b/edit/001-editor.mu @@ -132,7 +132,6 @@ def render screen:&:screen, editor:&:editor -> last-row:num, last-column:num, sc prev:&:duplex-list:char <- copy curr # just in case curr becomes null and we can't compute prev curr <- next curr # traversing screen - +render-loop-initialization color:num <- copy 7/white row:num <- copy 1/top column:num <- copy left diff --git a/edit/004-programming-environment.mu b/edit/004-programming-environment.mu index 178852d4..cde43fc8 100644 --- a/edit/004-programming-environment.mu +++ b/edit/004-programming-environment.mu @@ -209,7 +209,6 @@ def render-without-moving-cursor screen:&:screen, editor:&:editor -> last-row:nu curr:&:duplex-list:char <- get *editor, top-of-screen:offset prev:&:duplex-list:char <- copy curr # just in case curr becomes null and we can't compute prev curr <- next curr - +render-loop-initialization color:num <- copy 7/white row:num <- copy 1/top column:num <- copy left |