From c0d670ce16d0e148b7d39ac354571b3d284a0b53 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2020 21:08:37 +0100 Subject: [PATCH] patch 8.2.2085: Qt translation file is recognized as typescript Problem: Qt translation file is recognized as typescript. Solution: Check the first line for "'], 'Xfile.ts') + split Xfile.ts + call assert_equal('xml', &filetype) + bwipe! + + call writefile(['// looks like Typescript'], 'Xfile.ts') + split Xfile.ts + call assert_equal('typescript', &filetype) + bwipe! + + call delete('Xfile.hook') + filetype off +endfunc + " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/version.c b/src/version.c index f3584c1d81..096698b7f4 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2085, /**/ 2084, /**/ -- 2.47.2