0
0
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:
Bram Moolenaar
2020-03-22 13:44:28 +01:00
parent ce436de5a9
commit 97acfc781b
3 changed files with 16 additions and 7 deletions

View File

@@ -487,7 +487,7 @@ call_def_function(
{
// Turn CTRL-C into an exception.
got_int = FALSE;
if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) != FAIL)
if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) == FAIL)
goto failed;
did_throw = TRUE;
}