From 960909b81d0ceb1eab714164264796f87899a6f0 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Fri, 13 May 2022 20:52:30 -0400 Subject: [PATCH] fix: typo in editor interface --- editor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor.go b/editor.go index 0724fb5..323f50b 100644 --- a/editor.go +++ b/editor.go @@ -66,5 +66,5 @@ func editorGetRegister(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) { buf := lr.rl.GetFromRegister(register) - return c.PushingNext1(t.Runtime, rt.StringValue(string(bufma))), nil + return c.PushingNext1(t.Runtime, rt.StringValue(string(buf))), nil }