about summary refs log tree commit diff stats
path: root/edit
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-04-18 15:44:31 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-04-18 15:44:31 -0700
commit978803c5ef53260b775bc0be36e8646ba9c5d9a1 (patch)
tree50a8a7766735c8d18c5b128cf8ee28691383cc0d /edit
parent6c52e24e2996a77aa6297b26159003d503aef8a0 (diff)
downloadmu-978803c5ef53260b775bc0be36e8646ba9c5d9a1.tar.gz
3831
Fix CI.
Diffstat (limited to 'edit')
-rw-r--r--edit/005-sandbox.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu
index db5d692b..46bd41eb 100644
--- a/edit/005-sandbox.mu
+++ b/edit/005-sandbox.mu
@@ -696,7 +696,7 @@ scenario run-instruction-manages-screen-per-sandbox [
 def editor-contents editor:&:editor -> result:text [
   local-scope
   load-ingredients
-  buf:&:buffer <- new-buffer 80
+  buf:&:buffer:char <- new-buffer 80
   curr:&:duplex-list:char <- get *editor, data:offset
   # skip § sentinel
   assert curr, [editor without data is illegal; must have at least a sentinel]