summaryrefslogtreecommitdiffstats
path: root/runtime/autoload
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-05-06 12:07:59 +0000
committerBram Moolenaar <Bram@vim.org>2007-05-06 12:07:59 +0000
commit5c5b0941ca72518c6f8f359de743d6ffdcdfbf54 (patch)
tree868781c506bea477ab49c68359d51c4ee6a17bfe /runtime/autoload
parentc980de3382e25c65f339db4428ada4f0a054e711 (diff)
updated for version 7.1a
Diffstat (limited to 'runtime/autoload')
-rw-r--r--runtime/autoload/gzip.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/gzip.vim b/runtime/autoload/gzip.vim
index 933d83d090..cf20238c88 100644
--- a/runtime/autoload/gzip.vim
+++ b/runtime/autoload/gzip.vim
@@ -1,6 +1,6 @@
" Vim autoload file for editing compressed files.
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2006 Oct 03
+" Last Change: 2006 Oct 09
" These functions are used by the gzip plugin.
@@ -177,7 +177,7 @@ endfun
fun s:escape(name)
" shellescape() was added by patch 7.0.111
- if v:version > 700 || (v:version == 700 && has('patch111'))
+ if exists("*shellescape")
return shellescape(a:name)
endif
return "'" . a:name . "'"