mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.0424: checking for wrong return value
Problem: Checking for wrong return value. (Tom) Solution: Invert the check and fix the test.
This commit is contained in:
@@ -943,13 +943,20 @@ def Test_while_loop()
|
|||||||
enddef
|
enddef
|
||||||
|
|
||||||
def Test_interrupt_loop()
|
def Test_interrupt_loop()
|
||||||
|
let caught = false
|
||||||
let x = 0
|
let x = 0
|
||||||
while 1
|
try
|
||||||
x += 1
|
while 1
|
||||||
if x == 100
|
x += 1
|
||||||
feedkeys("\<C-C>", 'Lt')
|
if x == 100
|
||||||
endif
|
feedkeys("\<C-C>", 'Lt')
|
||||||
endwhile
|
endif
|
||||||
|
endwhile
|
||||||
|
catch
|
||||||
|
caught = true
|
||||||
|
assert_equal(100, x)
|
||||||
|
endtry
|
||||||
|
assert_true(caught, 'should have caught an exception')
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
def Test_substitute_cmd()
|
def Test_substitute_cmd()
|
||||||
|
@@ -738,6 +738,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 */
|
||||||
|
/**/
|
||||||
|
424,
|
||||||
/**/
|
/**/
|
||||||
423,
|
423,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -487,7 +487,7 @@ call_def_function(
|
|||||||
{
|
{
|
||||||
// Turn CTRL-C into an exception.
|
// Turn CTRL-C into an exception.
|
||||||
got_int = FALSE;
|
got_int = FALSE;
|
||||||
if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) != FAIL)
|
if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) == FAIL)
|
||||||
goto failed;
|
goto failed;
|
||||||
did_throw = TRUE;
|
did_throw = TRUE;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user