mirror of
https://github.com/vim/vim.git
synced 2025-10-29 09:37:35 -04:00
patch 8.2.1791: Vim9: debugger test fails
Problem: Vim9: debugger test fails. Solution: Use "var" instead of "let".
This commit is contained in:
@@ -859,7 +859,7 @@ func Test_Backtrace_DefFunction()
|
|||||||
vim9script
|
vim9script
|
||||||
|
|
||||||
def DoAThing(): number
|
def DoAThing(): number
|
||||||
let a = 100 * 2
|
var a = 100 * 2
|
||||||
a += 3
|
a += 3
|
||||||
return a
|
return a
|
||||||
enddef
|
enddef
|
||||||
|
|||||||
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1791,
|
||||||
/**/
|
/**/
|
||||||
1790,
|
1790,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user