Skip to content

Commit

Permalink
Silence any perl warnings
Browse files Browse the repository at this point in the history
Closes #107.
  • Loading branch information
tpope committed Dec 21, 2014
1 parent 78ed0c0 commit c4390c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/dispatch.vim
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ endfunction
function! dispatch#prepare_start(request, ...) abort
let exec = 'echo $$ > ' . a:request.file . '.pid; '
if executable('perl')
let exec .= 'perl -e "select(undef,undef,undef,0.1)"; '
let exec .= 'perl -e "select(undef,undef,undef,0.1)" 2>/dev/null; '
else
let exec .= 'sleep 1; '
endif
Expand Down

0 comments on commit c4390c5

Please sign in to comment.