# HG changeset patch # User Christian Brabandt # Date 1517214605 -3600 # Node ID 41b7a660ed2a01e0fe90e7bb3b7a8aa32d153067 # Parent fad0ccbf8e78c5538d57431b12428781380015b8 patch 8.0.1438: filetype detection test not updated for change commit https://github.com/vim/vim/commit/0479e910c423d71e2b96bc721feffad5808e767a Author: Bram Moolenaar Date: Mon Jan 29 09:17:32 2018 +0100 patch 8.0.1438: filetype detection test not updated for change Problem: Filetype detection test not updated for change. Solution: Update the test. diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -323,7 +323,9 @@ let s:filename_checks = { \ 'pf': ['pf.conf'], \ 'pfmain': ['main.cf'], \ 'php': ['file.php', 'file.php9', 'file.phtml', 'file.ctp'], - \ 'pike': ['file.pike', 'file.lpc', 'file.ulpc', 'file.pmod'], + \ 'lpc': ['file.lpc', 'file.ulpc'], + \ 'pike': ['file.pike', 'file.pmod'], + \ 'cmod': ['file.cmod'], \ 'pilrc': ['file.rcp'], \ 'pine': ['.pinerc', 'pinerc', '.pinercex', 'pinercex'], \ 'pinfo': ['/etc/pinforc', '/.pinforc'], diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1438, +/**/ 1437, /**/ 1436,