diff options
author | 2012-10-22 12:49:29 -0400 | |
---|---|---|
committer | 2012-10-22 12:49:29 -0400 | |
commit | 83acfd9b74600610bab990b6450a7d049c41a74c (patch) | |
tree | d656443a828225b9ce515b2322237bb3a8e43ed0 /core | |
parent | 099a759c90841acf76c5bbb3610d01fef993d899 (diff) | |
download | textadept-83acfd9b74600610bab990b6450a7d049c41a74c.tar.gz textadept-83acfd9b74600610bab990b6450a7d049c41a74c.zip |
Fix string collation bug in ncurses due to CDK.
CDK would reset locale settings so autocomplete lists would not sort correctly.
Diffstat (limited to 'core')
-rw-r--r-- | core/init.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/init.lua b/core/init.lua index fe1a6e05..a0da9f94 100644 --- a/core/init.lua +++ b/core/init.lua @@ -3,7 +3,6 @@ _RELEASE = "Textadept 6.0 beta 3" package.path = _HOME..'/core/?.lua;'..package.path -os.setlocale('C', 'collate') if jit then require 'compat' end -- compatibility for LuaJIT _SCINTILLA = require 'iface' |