summaryrefslogtreecommitdiff
path: root/ale_linters/cpp/gcc.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-05-12 09:20:16 +0100
committerw0rp <devw0rp@gmail.com>2017-05-12 09:20:16 +0100
commit07b2542c0d6505f2a843e700d246367a522ecf64 (patch)
tree5a0ee411ef62a76d1cf04ccd1bdff4dd8e3e786a /ale_linters/cpp/gcc.vim
parentfa54f7af97f2bb33eec1363b2262caa5a5b70d0b (diff)
downloadale-07b2542c0d6505f2a843e700d246367a522ecf64.zip
#549 Temporarily revert shell escaping changes, just for Windows
Diffstat (limited to 'ale_linters/cpp/gcc.vim')
-rw-r--r--ale_linters/cpp/gcc.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/cpp/gcc.vim b/ale_linters/cpp/gcc.vim
index 981caec0..e85f1894 100644
--- a/ale_linters/cpp/gcc.vim
+++ b/ale_linters/cpp/gcc.vim
@@ -20,7 +20,7 @@ function! ale_linters#cpp#gcc#GetCommand(buffer) abort
" -iquote with the directory the file is in makes #include work for
" headers in the same directory.
return 'gcc -S -x c++ -fsyntax-only '
- \ . '-iquote ' . shellescape(fnamemodify(bufname(a:buffer), ':p:h'))
+ \ . '-iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h'))
\ . ' ' . ale#Var(a:buffer, 'cpp_gcc_options') . ' -'
endfunction