annotate runtime/ftoff.vim @ 25128:3766babfb546
v8.2.3101
patch 8.2.3101: missing function prototype for vim_round()
Commit: https://github.com/vim/vim/commit/67b17a6fc62156383d24dcbd6e6df34e180d7235
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 4 16:50:55 2021 +0200
patch 8.2.3101: missing function prototype for vim_round()
Problem: Missing function prototype for vim_round().
Solution: Add the prototype.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 04 Jul 2021 17:00:05 +0200 |
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 *
|