annotate runtime/ftoff.vim @ 24077:5006d95ef82d
v8.2.2580
patch 8.2.2580: Vim9: checking vararg type may be wrong
Commit: https://github.com/vim/vim/commit/e3ffcd9902efc756178900d9bd972c74a09c3fcd
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Mar 8 21:47:13 2021 +0100
patch 8.2.2580: Vim9: checking vararg type may be wrong
Problem: Vim9: checking vararg type is wrong when function is auto-loaded.
Solution: Use the member type. (closes https://github.com/vim/vim/issues/7933)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 08 Mar 2021 22:00:03 +0100 |
parents |
3fc0f57ecb91 |
children |
4027cefc2aab |
rev |
line source |
7
|
1 " Vim support file to switch off detection of file types
|
|
2 "
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
4 " Last change: 2001 Jun 11
|
|
5
|
|
6 if exists("did_load_filetypes")
|
|
7 unlet did_load_filetypes
|
|
8 endif
|
|
9
|
|
10 " Remove all autocommands in the filetypedetect group
|
|
11 silent! au! filetypedetect *
|