From 5c6a2d53232f248c0ba0e4278a447042aa00371e Mon Sep 17 00:00:00 2001
From: Bram Moolenaar <Bram@vim.org>
Date: Sat, 25 Mar 2006 22:06:54 +0000
Subject: [PATCH] updated for version 7.0b01

---
 nsis/icons/disabled.bmp | Bin 0 -> 358 bytes
 runtime/syntax/dns.vim  |  46 ++--------------------------------------
 2 files changed, 2 insertions(+), 44 deletions(-)
 create mode 100644 nsis/icons/disabled.bmp

diff --git a/nsis/icons/disabled.bmp b/nsis/icons/disabled.bmp
new file mode 100644
index 0000000000000000000000000000000000000000..8f6b6d4e665348eee9d34b912084cff5bef910c7
GIT binary patch
literal 358
zcmZ?rO=DyLgEAng0mLFu%*en37XJVwkMKdT09b^9!NiS)fn@~?gGwF?gH4qULyVmb
z!;@!E7+9KE7)*kIa+_Ef{`~vHAXCS};L_^CkmBXS@aEkch7>0k1`{t9hM7PR;tC=e
zK<v2(cy7Yj_rB%7g|erfPfPm~2~jhJEiEm<6U?6Ko(2RZks!TyfWknDvq1LT2Owrz
z+P|9&3^Csz?1ZBX3`P)US{l$hhA{RL28L)c2q$qXQ13<vTN<c$=54S<;$D#XQ!PLe
r&0xD`P6kROT7um$b1G1WG}LWC9YEC(@tJcsO5cRBX9k-BnLu*@xE*=l

literal 0
HcmV?d00001

diff --git a/runtime/syntax/dns.vim b/runtime/syntax/dns.vim
index 844b96f4cb..cc9a3f0e96 100644
--- a/runtime/syntax/dns.vim
+++ b/runtime/syntax/dns.vim
@@ -1,47 +1,5 @@
 " Vim syntax file
 " Language:     DNS/BIND Zone File
-" Maintainer:   jehsom@jehsom.com
-" URL:		http://scripts.jehsom.com
-" Last Change:  2001 Sep 02
 
-" For version 5.x: Clear all syntax items
-" For version 6.x: Quit when a syntax file was already loaded
-if version < 600
-    syntax clear
-elseif exists("b:current_syntax")
-    finish
-endif
-
-" Last match is taken!
-syn match	dnsKeyword	"\<\(IN\|A\|SOA\|NS\|CNAME\|MX\|PTR\|SOA\|MB\|MG\|MR\|NULL\|WKS\|HINFO\|TXT\|CS\|CH\|CPU\|OS\)\>"
-syn match   dnsRecordName       "^[^ 	]*"
-syn match   dnsPreProc		"^\$[^ ]*"
-syn match   dnsComment		";.*$"
-syn match   dnsDataFQDN		"\<[^ 	]*\.[ 	]*$"
-syn match   dnsConstant			"\<\([0-9][0-9.]*\|[0-9.]*[0-9]\)\>"
-syn match   dnsIPaddr		"\<\(\([0-2]\)\{0,1}\([0-9]\)\{1,2}\.\)\{3}\([0-2]\)\{0,1}\([0-9]\)\{1,2}\>[ 	]*$"
-
-" Define the default highlighting.
-" For version 5.7 and earlier: only when not done already
-" For version 5.8 and later: only when an item doesn't have highlighting yet.
-if version >= 508 || !exists("did_dns_syntax_inits")
-    if version < 508
-	let did_dns_syntax_inits = 1
-	command -nargs=+ HiLink hi link <args>
-    else
-	command -nargs=+ HiLink hi def link <args>
-    endif
-
-    HiLink dnsComment     Comment
-    HiLink dnsDataFQDN    Identifier
-    HiLink dnsPreProc     PreProc
-    HiLink dnsKeyword     Keyword
-    HiLink dnsRecordName  Type
-    HiLink dnsIPaddr      Type
-    HiLink dnsIPerr       Error
-    HiLink dnsConstant	  Constant
-
-    delcommand HiLink
-endif
-
-let b:current_syntax = "dns"
+" This has been replaced by the bindzone syntax
+:runtime! syntax/bindzone.vim
-- 
GitLab