diff options
author | 2016-11-04 11:42:58 -0400 | |
---|---|---|
committer | 2016-11-04 11:42:58 -0400 | |
commit | 28285f671e4c681b8eb236a981bc4024050f0f1b (patch) | |
tree | 103d1e7e1052ee41ad30b223db950444fdbd177e /core/file_io.lua | |
parent | b965beae414d95a8382539f92f891b073edc5fcd (diff) | |
download | textadept-28285f671e4c681b8eb236a981bc4024050f0f1b.tar.gz textadept-28285f671e4c681b8eb236a981bc4024050f0f1b.zip |
Removed MacRoman encoding option, as OSX uses UTF-8 by default.
Diffstat (limited to '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 cf364305..8493cb3e 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -81,7 +81,7 @@ io.recent_files = {} -- @usage io.encodings[#io.encodings + 1] = 'UTF-16' -- @class table -- @name encodings -io.encodings = {'UTF-8', 'ASCII', 'ISO-8859-1', 'MacRoman'} +io.encodings = {'UTF-8', 'ASCII', 'ISO-8859-1'} --- -- Opens *filenames*, a string filename or list of filenames, or the |