From 0859aebe7f17d12e42bf1d3873cb82c3c1dfc4c2 Mon Sep 17 00:00:00 2001 From: Ezequiel Valenzuela Date: Sun, 10 Nov 2013 13:35:58 +0000 Subject: [PATCH] tidied up (comment changes, dead code removal) --- autoload/vundle/compat.vim | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/autoload/vundle/compat.vim b/autoload/vundle/compat.vim index 145a2b6..2a5c2dc 100644 --- a/autoload/vundle/compat.vim +++ b/autoload/vundle/compat.vim @@ -1,3 +1,6 @@ +" MAYBE: also provide fnameescape() +" (first appeared in a major release in vim-7.2) + " this abstracts the operation: " exec 'set runtimepath-='.fnameescape(LIST) " @@ -132,11 +135,6 @@ endf func! vundle#compat#has_dos_windows_paths() return exists('+shellslash') - " previous implementation: - " return 0 - " \ || has('win32') || has('win64') - " \ || has('win16') || has('win95') - " \ || has('dos16') || has('dos32') endf " provides the same functionality as shellescape()