aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoload/shebang_create_exec.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/shebang_create_exec.vim b/autoload/shebang_create_exec.vim
index a69600a..8ae659e 100644
--- a/autoload/shebang_create_exec.vim
+++ b/autoload/shebang_create_exec.vim
@@ -70,7 +70,7 @@ function! s:MakeExecutable(filename) abort
else
" We'll need to fork to chmod(1); escape the filename safely, using
- " shellescape() if we've got it
+ " shellescape() if we've got it, or manual UNIX sh quoting if not
let filename_escaped = exists('*shellescape')
\ ? shellescape(filename)
\ : '''' . escape(filename, '''') . ''''