diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-12 09:20:16 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-12 09:20:16 +0100 |
commit | 07b2542c0d6505f2a843e700d246367a522ecf64 (patch) | |
tree | 5a0ee411ef62a76d1cf04ccd1bdff4dd8e3e786a /ale_linters/asm | |
parent | fa54f7af97f2bb33eec1363b2262caa5a5b70d0b (diff) | |
download | ale-07b2542c0d6505f2a843e700d246367a522ecf64.zip |
#549 Temporarily revert shell escaping changes, just for Windows
Diffstat (limited to 'ale_linters/asm')
-rw-r--r-- | ale_linters/asm/gcc.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/asm/gcc.vim b/ale_linters/asm/gcc.vim index 1ff348d8..39b1f7c2 100644 --- a/ale_linters/asm/gcc.vim +++ b/ale_linters/asm/gcc.vim @@ -5,7 +5,7 @@ let g:ale_asm_gcc_options = get(g:, 'ale_asm_gcc_options', '-Wall') function! ale_linters#asm#gcc#GetCommand(buffer) abort return 'gcc -x assembler -fsyntax-only ' - \ . '-iquote ' . shellescape(fnamemodify(bufname(a:buffer), ':p:h')) + \ . '-iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) \ . ' ' . ale#Var(a:buffer, 'asm_gcc_options') . ' -' endfunction |