diff options
author | 2011-12-19 09:14:45 -0500 | |
---|---|---|
committer | 2011-12-19 09:14:45 -0500 | |
commit | 440359f59f990ba2be471381ea8accf0c1359b1b (patch) | |
tree | f01a6fd19e5e65973da4d3498433ff803bd40de3 /core | |
parent | 73cb01e42377c3d769275d2ee01d33332d796707 (diff) | |
download | textadept-440359f59f990ba2be471381ea8accf0c1359b1b.tar.gz textadept-440359f59f990ba2be471381ea8accf0c1359b1b.zip |
Actually fixed bug introduced by r994, r996; core/file_io.lua
Diffstat (limited to 'core')
-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 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 |