diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-11-06 14:48:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-11-06 14:48:06 +0100 |
commit | 25de4c232d580583feadae11ab34e3cc6333c350 (patch) | |
tree | 65a4a21f5f67c05b8bfc6118bfa4afe97265e01e /runtime/syntax/synload.vim | |
parent | 21662be2211675824df1771c7f169948ede40c41 (diff) | |
download | vim-git-25de4c232d580583feadae11ab34e3cc6333c350.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/synload.vim')
-rw-r--r-- | runtime/syntax/synload.vim | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/runtime/syntax/synload.vim b/runtime/syntax/synload.vim index 6183f33a5..ab918c645 100644 --- a/runtime/syntax/synload.vim +++ b/runtime/syntax/synload.vim @@ -1,6 +1,6 @@ " Vim syntax support file " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2012 Sep 25 +" Last Change: 2016 Nov 04 " This file sets up for syntax highlighting. " It is loaded from "syntax.vim" and "manual.vim". @@ -69,8 +69,11 @@ au Syntax c,cpp,cs,idl,java,php,datascript " Source the user-specified syntax highlighting file -if exists("mysyntaxfile") && filereadable(expand(mysyntaxfile)) - execute "source " . mysyntaxfile +if exists("mysyntaxfile") + let s:fname = expand(mysyntaxfile) + if filereadable(s:fname) + execute "source " . fnameescape(s:fname) + endif endif " Restore 'cpoptions' |