diff options
author | 2010-11-19 17:46:46 -0500 | |
---|---|---|
committer | 2010-11-19 17:46:46 -0500 | |
commit | 1f3bbef0357b89f82a65d1e67caa1980eee3f40b (patch) | |
tree | af6168f0db9cad024c37e39839fd18193d825a81 /core | |
parent | 9309bf0090968be7b1c0fea82c361e32c7d51ad3 (diff) | |
download | textadept-1f3bbef0357b89f82a65d1e67caa1980eee3f40b.tar.gz textadept-1f3bbef0357b89f82a65d1e67caa1980eee3f40b.zip |
Mac OSX textadept.app includes GTK-OSX; the framework is no longer needed.
Diffstat (limited to 'core')
-rw-r--r-- | core/args.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/args.lua b/core/args.lua index c7027e0d..cd1b682f 100644 --- a/core/args.lua +++ b/core/args.lua @@ -71,9 +71,6 @@ if WIN32 and #arg[0] > 0 then for i = 1, #params do arg[#arg + 1] = params[i] end end --- For Mac, remove junk parameter if necessary. -if OSX and arg[1] and arg[1]:find('^%-psn_0') then table.remove(arg, 1) end - -- Set _G._USERHOME. local userhome = os.getenv(not WIN32 and 'HOME' or 'USERPROFILE')..'/.textadept' for i = 1, #arg do |