diff options
author | 2019-07-30 16:52:48 -0400 | |
---|---|---|
committer | 2019-07-30 16:52:48 -0400 | |
commit | ed91aa74ec7dacf3d4f7f794ac571bd7ffcc8cc0 (patch) | |
tree | 2ce277552055cd023df31d8f4272fecfb59c139d /modules/textadept/menu.lua | |
parent | 68abf86021d8dc505ac0b6c91f2b5941a8da9d15 (diff) | |
download | textadept-ed91aa74ec7dacf3d4f7f794ac571bd7ffcc8cc0.tar.gz textadept-ed91aa74ec7dacf3d4f7f794ac571bd7ffcc8cc0.zip |
Use CP1252 instead of ISO-8859-1.
CP1252 is a superset of ISO-8859-1.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index bbfe6d33..2cd738d3 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -289,7 +289,7 @@ local default_menubar = { title = _L['E_ncoding'], {_L['_UTF-8 Encoding'], function() set_encoding('UTF-8') end}, {_L['_ASCII Encoding'], function() set_encoding('ASCII') end}, - {_L['_ISO-8859-1 Encoding'], function() set_encoding('ISO-8859-1') end}, + {_L['_CP-1252 Encoding'], function() set_encoding('CP1252') end}, {_L['UTF-1_6 Encoding'], function() set_encoding('UTF-16LE') end} }, SEPARATOR, |