summaryrefslogtreecommitdiff
path: root/runtime/syntax/make.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-04-17 20:28:32 +0000
committerBram Moolenaar <Bram@vim.org>2005-04-17 20:28:32 +0000
commit0e21a3f623bc9766953882f30326783f76df39a0 (patch)
tree78dbc51e75c070507ccc9fd5f3e1843be0a8579f /runtime/syntax/make.vim
parent99942f0b16c36508edf225345483d86901f44c39 (diff)
downloadvim-git-0e21a3f623bc9766953882f30326783f76df39a0.tar.gz
updated for version 7.0067v7.0067
Diffstat (limited to 'runtime/syntax/make.vim')
-rw-r--r--runtime/syntax/make.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/make.vim b/runtime/syntax/make.vim
index 85da9800e..aba073ee5 100644
--- a/runtime/syntax/make.vim
+++ b/runtime/syntax/make.vim
@@ -2,7 +2,7 @@
" Language: Makefile
" Maintainer: Claudio Fleiner <claudio@fleiner.com>
" URL: http://www.fleiner.com/vim/syntax/make.vim
-" Last Change: 2004 Apr 30
+" Last Change: 2005 Apr 17
" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
@@ -67,9 +67,9 @@ syn match makeStatement contained "(\(subst\|addprefix\|addsuffix\|basename\|cal
" Comment
if exists("make_microsoft")
- syn match makeComment "#.*" contains=makeTodo
+ syn match makeComment "#.*" contains=makeTodo,@Spell
else
- syn region makeComment start="#" end="^$" end="[^\\]$" keepend contains=makeTodo
+ syn region makeComment start="#" end="^$" end="[^\\]$" keepend contains=makeTodo,@Spell
syn match makeComment "#$"
endif
syn keyword makeTodo TODO FIXME XXX contained