annotate runtime/indent/docbk.vim @ 26974:fceb494e22de
v8.2.4016
patch 8.2.4016: Vim9: incorrect error for argument that is shadowing var
Commit: https://github.com/vim/vim/commit/58493cfae255adec2d5b407593b82d07abcc0975
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 6 12:23:30 2022 +0000
patch 8.2.4016: Vim9: incorrect error for argument that is shadowing var
Problem: Vim9: incorrect error for argument that is shadowing var.
Solution: Ignore variable that is not in block where the function was
defined.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 06 Jan 2022 13:30:04 +0100 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
7
|
1 " Vim indent file
|
11062
|
2 " Language: DocBook Documentation Format
|
|
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2006-04-19
|
7
|
5
|
353
|
6 if exists("b:did_indent")
|
375
|
7 finish
|
353
|
8 endif
|
|
9
|
7
|
10 " Same as XML indenting for now.
|
|
11 runtime! indent/xml.vim
|
|
12
|
353
|
13 if exists('*XmlIndentGet')
|
|
14 setlocal indentexpr=XmlIndentGet(v:lnum,0)
|
|
15 endif
|