From 2066415f82ba4fdda8d6f3020024d9fbf997e3da Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sun, 25 Jan 2009 21:09:41 -0500 Subject: Replaced str:match with str:find where applicable for speed improvements. --- modules/textadept/editing.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/textadept/editing.lua') diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index 069135b2..972b52d8 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -136,7 +136,7 @@ function autocomplete_word_from_dict(dict) if not f then return end local c_list = {} for line in f:lines() do - if line:match('^'..root) then c_list[#c_list + 1] = line end + if line:find('^'..root) then c_list[#c_list + 1] = line end end f:close() if #c_list > 0 then buffer:auto_c_show(#root, table.concat(c_list, ' ')) end -- cgit v1.2.3