diff options
author | 2016-06-15 08:49:28 -0400 | |
---|---|---|
committer | 2016-06-15 08:49:28 -0400 | |
commit | fc20fd1a9b74c1059775446baf921181433801aa (patch) | |
tree | 5383e5cdb7b56fd72decb30915b7f0c0597dabe3 /modules/textadept/menu.lua | |
parent | d432e17da5cc5ab973e895e9f391c4e2b4def9bc (diff) | |
download | textadept-fc20fd1a9b74c1059775446baf921181433801aa.tar.gz textadept-fc20fd1a9b74c1059775446baf921181433801aa.zip |
Removed explicit detection and use of extinct CR line endings.
It's quite possible some of Textadept's functions didn't handle them properly
anyway.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 7c6692f9..acbcdd9a 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -277,7 +277,6 @@ local default_menubar = { { title = _L['_EOL Mode'], {_L['CRLF'], function() set_eol_mode(buffer.EOL_CRLF) end}, - {_L['CR'], function() set_eol_mode(buffer.EOL_CR) end}, {_L['LF'], function() set_eol_mode(buffer.EOL_LF) end} }, { |