annotate runtime/indoff.vim @ 31980:13329cb9faee
v9.0.1322
patch 9.0.1322: crash when indexing "any" which is an object
Commit: https://github.com/vim/vim/commit/2c1c803c7e0cc356dd55a2cd49fbffbbf7db766e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 18 18:38:37 2023 +0000
patch 9.0.1322: crash when indexing "any" which is an object
Problem: Crash when indexing "any" which is an object.
Solution: Check the index is a number. Do not check the member type of an
object. (closes #12019)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 18 Feb 2023 19:45:07 +0100 |
parents |
3fc0f57ecb91 |
children |
4027cefc2aab |
rev |
line source |
7
|
1 " Vim support file to switch off loading indent files for file types
|
|
2 "
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
4 " Last Change: 2001 Jun 11
|
|
5
|
|
6 if exists("did_indent_on")
|
|
7 unlet did_indent_on
|
|
8 endif
|
|
9
|
|
10 " Remove all autocommands in the filetypeindent group
|
|
11 silent! au! filetypeindent *
|