From 440359f59f990ba2be471381ea8accf0c1359b1b Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Mon, 19 Dec 2011 09:14:45 -0500 Subject: Actually fixed bug introduced by r994, r996; core/file_io.lua --- core/file_io.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/file_io.lua') diff --git a/core/file_io.lua b/core/file_io.lua index b91ad2b7..28241b3b 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -345,5 +345,5 @@ end) -- @name open_recent_file function io.open_recent_file() local i = gui.filteredlist(L('Open'), L('File'), io.recent_files, true) - if i then M.open_file(io.recent_files[i + 1]) end + if i then io.open_file(io.recent_files[i + 1]) end end -- cgit v1.2.3