From: Bram Moolenaar Date: Tue, 16 Nov 2021 11:53:13 +0000 (+0000) Subject: patch 8.2.3600: filetype test fails X-Git-Tag: v8.2.3600 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=314b773abbb9b1ce0020d83482c6daf7ad6a42a2;p=vim patch 8.2.3600: filetype test fails Problem: Filetype test fails. Solution: Add missint change. --- diff --git a/runtime/scripts.vim b/runtime/scripts.vim index 0b3fdc351..79fd0a77e 100644 --- a/runtime/scripts.vim +++ b/runtime/scripts.vim @@ -190,6 +190,10 @@ if s:line1 =~# "^#!" elseif s:name =~# 'fennel\>' set ft=fennel + " MikroTik RouterOS script + elseif s:name =~# 'rsc\>' + set ft=routeros + endif unlet s:name @@ -390,6 +394,10 @@ else elseif s:line1 =~# '^%YAML' set ft=yaml + " MikroTik RouterOS script + elseif s:line1 =~# '^#.*by RouterOS.*$' + set ft=routeros + " CVS diff else let s:lnum = 1 diff --git a/src/version.c b/src/version.c index cb1599d39..acc7a9b10 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3600, /**/ 3599, /**/