From 429a7642d6beadc4ce37b902e31fa561f8382edb Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sat, 28 Jul 2018 10:34:38 -0400 Subject: Removed optional '*' prefix in I/O reads. Lua 5.3 made them optional and LuaJIT support has been dropped. --- core/file_io.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/file_io.lua') diff --git a/core/file_io.lua b/core/file_io.lua index e5766c30..c7fc3472 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -116,7 +116,7 @@ function io.open_file(filenames, encodings) local text = '' local f, err = io.open(filename, 'rb') if f then - text = f:read('*a') + text = f:read('a') f:close() if not text then goto continue end -- filename exists, but cannot read it elseif lfs.attributes(filename) then @@ -172,7 +172,7 @@ function io.reload_file() if not buffer.filename then return end local pos, first_visible_line = buffer.current_pos, buffer.first_visible_line local f = assert(io.open(buffer.filename, 'rb')) - local text = f:read('*a') + local text = f:read('a') f:close() if buffer.encoding then text = text:iconv('UTF-8', buffer.encoding) end buffer:clear_all() -- cgit v1.2.3