annotate runtime/ftplugin/mailaliases.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 |
837
|
1 " Vim filetype plugin file
|
11062
|
2 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
3 " Latest Revision: 2008-07-09
|
837
|
4
|
|
5 if exists("b:did_ftplugin")
|
|
6 finish
|
|
7 endif
|
|
8 let b:did_ftplugin = 1
|
|
9
|
1698
|
10 let s:cpo_save = &cpo
|
|
11 set cpo&vim
|
|
12
|
837
|
13 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
14
|
|
15 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
|
1698
|
16
|
|
17 let &cpo = s:cpo_save
|
|
18 unlet s:cpo_save
|