annotate runtime/ftoff.vim @ 32102:69cf75767b88
v9.0.1382
patch 9.0.1382: failing test for strptime() doesn't show returned value
Commit: https://github.com/vim/vim/commit/c142d6513e8d71a8f26c5ca1cb00b7b3de9b15e6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 5 19:27:49 2023 +0000
patch 9.0.1382: failing test for strptime() doesn't show returned value
Problem: Failing test for strptime() doesn't show returned value.
Solution: Use assert_equal() instead of assert_true().
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 05 Mar 2023 20:30:04 +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 *
|