From 03f166897801c29e9357bce3214f02502eb7f252 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sat, 21 Jul 2012 12:37:00 -0400 Subject: Converted some `buffer` "get" and "set" functions into properties. Also updated to Scintilla 3.2.1. --- modules/lua/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/lua/init.lua') diff --git a/modules/lua/init.lua b/modules/lua/init.lua index 54027c23..32dd5742 100644 --- a/modules/lua/init.lua +++ b/modules/lua/init.lua @@ -139,7 +139,7 @@ events.connect(events.FILE_AFTER_SAVE, function() if f then return end local line, msg = err:match('^.-:(%d+):%s*(.+)$') if line then - buffer:annotation_set_text(line - 1, msg) + buffer.annotation_text[line - 1] = msg buffer.annotation_style[line - 1] = 8 -- error style number buffer:goto_line(line - 1) end -- cgit v1.2.3