diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-04-29 16:47:26 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-04-29 16:47:26 -0700 |
commit | 26eae87d3fb25a1018b74b084b878c79445826f1 (patch) | |
tree | 688a12043f549cc7d0afd63c88579f2e7047d743 | |
parent | c811754807a8010afaad3bf13fad2f8b71889067 (diff) | |
download | mu-26eae87d3fb25a1018b74b084b878c79445826f1.tar.gz |
make matching parens pop again
-rw-r--r-- | shell/sandbox.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/sandbox.mu b/shell/sandbox.mu index a42d2000..ea82cdbd 100644 --- a/shell/sandbox.mu +++ b/shell/sandbox.mu @@ -92,7 +92,7 @@ fn render-sandbox screen: (addr screen), _self: (addr sandbox), xmin: int, ymin: y <- maybe-render-empty-screen screen, self, xmin, y y <- maybe-render-keyboard screen, self, xmin, y var cursor-in-sandbox?/ebx: (addr boolean) <- get self, cursor-in-data? - x, y <- render-gap-buffer-wrapping-right-then-down screen, data, x, y, xmax, ymax, *cursor-in-sandbox?, 0xf/fg, 0/bg + x, y <- render-gap-buffer-wrapping-right-then-down screen, data, x, y, xmax, ymax, *cursor-in-sandbox?, 7/fg, 0/bg y <- increment # trace var trace-ah/eax: (addr handle trace) <- get self, trace |