diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-06 12:07:59 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-06 12:07:59 +0000 |
commit | 5c5b0941ca72518c6f8f359de743d6ffdcdfbf54 (patch) | |
tree | 868781c506bea477ab49c68359d51c4ee6a17bfe /runtime/autoload/gzip.vim | |
parent | c980de3382e25c65f339db4428ada4f0a054e711 (diff) | |
download | vim-git-5c5b0941ca72518c6f8f359de743d6ffdcdfbf54.tar.gz |
updated for version 7.1a
Diffstat (limited to 'runtime/autoload/gzip.vim')
-rw-r--r-- | runtime/autoload/gzip.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/gzip.vim b/runtime/autoload/gzip.vim index 933d83d09..cf20238c8 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 . "'" |