summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Sax <christoph.sax@mailbox.org>2023-06-09 19:20:04 +0100
committerBram Moolenaar <Bram@vim.org>2023-06-09 19:20:04 +0100
commit740df76c90ee2c421ab7852b7ff2835aa0af782a (patch)
treeab8395a84d7fc28ef51cc23e623543d6adee25a5
parentc81dfaa69ceec9f6b88caf1dcdf2f859d4fcae47 (diff)
patch 9.0.1622: filetype name t32 is a bit obscurev9.0.1622
Problem: Filetype name t32 is a bit obscure. Solution: Rename t32 to trace32. (Christoph Sax, closes #12512)
-rw-r--r--runtime/filetype.vim2
-rw-r--r--src/testdir/test_filetype.vim2
-rw-r--r--src/version.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 89a30a8df9..c5dade3eb0 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -2235,7 +2235,7 @@ au BufNewFile,BufRead *.toml setf toml
au BufNewFile,BufRead *.tpp setf tpp
" TRACE32 Script Language
-au BufNewFile,BufRead *.cmm,*.t32 setf t32
+au BufNewFile,BufRead *.cmm,*.t32 setf trace32
" Treetop
au BufRead,BufNewFile *.treetop setf treetop
diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim
index ae76969a5a..45853c8738 100644
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -662,7 +662,7 @@ def s:GetFilenameChecks(): dict<list<string>>
'any/etc/systemd/system/file.d/.#-file',
'any/etc/systemd/system/file.d/file.conf'],
systemverilog: ['file.sv', 'file.svh'],
- t32: ['file.cmm', 'file.t32'],
+ trace32: ['file.cmm', 'file.t32'],
tags: ['tags'],
tak: ['file.tak'],
tal: ['file.tal'],
diff --git a/src/version.c b/src/version.c
index e5cb446ff7..ddc30c25ec 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1622,
+/**/
1621,
/**/
1620,