diff options
author | 2011-12-13 07:10:38 -0500 | |
---|---|---|
committer | 2011-12-13 07:10:38 -0500 | |
commit | 6230aafdf86f00f685a4f150843f4b469ea5c92f (patch) | |
tree | cfae7cedd38199aed5d55f39fa847f41f1cc9dff | |
parent | b97bde85963486f0fb2b81c9089b784473d0505d (diff) | |
download | textadept-6230aafdf86f00f685a4f150843f4b469ea5c92f.tar.gz textadept-6230aafdf86f00f685a4f150843f4b469ea5c92f.zip |
Fixed bug introduced by r994; core/file_io.lua
-rw-r--r-- | core/file_io.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/file_io.lua b/core/file_io.lua index f1f44f48..a5aca1a3 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 open_file(io.recent_files[i + 1]) end + if i then M.open_file(io.recent_files[i + 1]) end end |