aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/make.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-08-01 16:45:37 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-08-01 16:51:53 +0200
commit47b4eb110da8dfab1fca51ce4cc68b224d85b966 (patch)
tree0d473109bee0f447d6f0e4eef33f46cb865e11df /runtime/syntax/make.vim
parent87140f234ac1f152f6f273dee5ab1e42c7b1d78b (diff)
downloadrneovim-47b4eb110da8dfab1fca51ce4cc68b224d85b966.tar.gz
rneovim-47b4eb110da8dfab1fca51ce4cc68b224d85b966.tar.bz2
rneovim-47b4eb110da8dfab1fca51ce4cc68b224d85b966.zip
vim-patch:4c92e75dd4dd
Update runtime files. https://github.com/vim/vim/commit/4c92e75dd4ddb68dd92a86dd02d53c70dd4af33a vim-patch:c854898881c0 Revert change accidentally included in runtime file updates. Closes vim/vim#3998. https://github.com/vim/vim/commit/c854898881c02259f90170f210bf65bbd20cc1fc
Diffstat (limited to 'runtime/syntax/make.vim')
-rw-r--r--runtime/syntax/make.vim9
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/syntax/make.vim b/runtime/syntax/make.vim
index 7072bab988..16e66bc8f2 100644
--- a/runtime/syntax/make.vim
+++ b/runtime/syntax/make.vim
@@ -1,8 +1,9 @@
" Vim syntax file
" Language: Makefile
-" Maintainer: Claudio Fleiner <claudio@fleiner.com>
-" URL: http://www.fleiner.com/vim/syntax/make.vim
-" Last Change: 2015 Feb 28
+" Maintainer: Roland Hieber <rohieb+vim-iR0jGdkV@rohieb.name>
+" Previous Maintainer: Claudio Fleiner <claudio@fleiner.com>
+" URL: https://github.com/vim/vim/syntax/make.vim
+" Last Change: 2019 Feb 08
" quit when a syntax file was already loaded
if exists("b:current_syntax")
@@ -64,7 +65,7 @@ syn match makeCmdNextLine "\\\n."he=e-1 contained
" Statements / Functions (GNU make)
-syn match makeStatement contained "(\(subst\|abspath\|addprefix\|addsuffix\|and\|basename\|call\|dir\|error\|eval\|filter-out\|filter\|findstring\|firstword\|flavor\|foreach\|if\|info\|join\|lastword\|notdir\|or\|origin\|patsubst\|realpath\|shell\|sort\|strip\|suffix\|value\|warning\|wildcard\|word\|wordlist\|words\)\>"ms=s+1
+syn match makeStatement contained "(\(abspath\|addprefix\|addsuffix\|and\|basename\|call\|dir\|error\|eval\|file\|filter-out\|filter\|findstring\|firstword\|flavor\|foreach\|guile\|if\|info\|join\|lastword\|notdir\|or\|origin\|patsubst\|realpath\|shell\|sort\|strip\|subst\|suffix\|value\|warning\|wildcard\|word\|wordlist\|words\)\>"ms=s+1
" Comment
if exists("make_microsoft")