summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-vim/editorconfig-vim/files/editorconfig-vim-0.3.3-max-line-length-off.patch')
-rw-r--r--app-vim/editorconfig-vim/files/editorconfig-vim-0.3.3-max-line-length-off.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/app-vim/editorconfig-vim/files/editorconfig-vim-0.3.3-max-line-length-off.patch b/app-vim/editorconfig-vim/files/editorconfig-vim-0.3.3-max-line-length-off.patch
deleted file mode 100644
index be5d736a385c..000000000000
--- a/app-vim/editorconfig-vim/files/editorconfig-vim-0.3.3-max-line-length-off.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-commit 6e7011712398e53671e5a44edefeb68914562a3a
-Author: Hong Xu <hong@topbug.net>
-Date: Wed Apr 6 00:34:26 2016 -0700
-
- Support max_line_length=off to leave the decision to the editor settings.
-
-diff --git a/plugin/editorconfig.vim b/plugin/editorconfig.vim
-index 9abd008..0e9d647 100644
---- a/plugin/editorconfig.vim
-+++ b/plugin/editorconfig.vim
-@@ -563,7 +563,8 @@ function! s:ApplyConfig(config) " {{{1
- endif
-
- " highlight the columns following max_line_length
-- if has_key(a:config, 'max_line_length')
-+ if has_key(a:config, 'max_line_length') &&
-+ \ a:config['max_line_length'] != 'off'
- let l:max_line_length = str2nr(a:config['max_line_length'])
-
- if l:max_line_length >= 0