# HG changeset patch # User Bram Moolenaar # Date 1637064005 -3600 # Node ID 7922e1972d580a6f2ea0b0efe9afac628d78ad25 # Parent 9000a48b4c3062337d97ec8806d2c9d02dd1f9b0 patch 8.2.3600: filetype test fails Commit: https://github.com/vim/vim/commit/314b773abbb9b1ce0020d83482c6daf7ad6a42a2 Author: Bram Moolenaar Date: Tue Nov 16 11:53:13 2021 +0000 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3600, +/**/ 3599, /**/ 3598,