# HG changeset patch # User Bram Moolenaar # Date 1645876804 -3600 # Node ID dd7d94b911faeaab60425ab8c2a0b628677787e6 # Parent b39a350da22feba634c5982378ae53bdd1c10128 patch 8.2.4476: operator name spelled wrong Commit: https://github.com/vim/vim/commit/e41c1dd8890d3f701253255993f4e9af2d12225c Author: =?UTF-8?q?Dundar=20G=C3=B6c?= Date: Sat Feb 26 11:46:13 2022 +0000 patch 8.2.4476: operator name spelled wrong Problem: Operator name spelled wrong. Solution: Change trinary to ternary. (Goc Dundar, closes https://github.com/vim/vim/issues/9850) diff --git a/src/testdir/test_expr.vim b/src/testdir/test_expr.vim --- a/src/testdir/test_expr.vim +++ b/src/testdir/test_expr.vim @@ -43,7 +43,7 @@ func Test_version() call assert_false(has('patch-9.9.1')) endfunc -func Test_op_trinary() +func Test_op_ternary() let lines =<< trim END call assert_equal('yes', 1 ? 'yes' : 'no') call assert_equal('no', 0 ? 'yes' : 'no') diff --git a/src/testdir/test_vim9_expr.vim b/src/testdir/test_vim9_expr.vim --- a/src/testdir/test_vim9_expr.vim +++ b/src/testdir/test_vim9_expr.vim @@ -12,7 +12,7 @@ def FuncTwo(arg: number): number enddef " test cond ? expr : expr -def Test_expr1_trinary() +def Test_expr1_ternary() var lines =<< trim END assert_equal('one', true ? 'one' : 'two') assert_equal('one', 1 ? @@ -74,7 +74,7 @@ def Test_expr1_trinary() v9.CheckDefAndScriptFailure(lines, ['E1001: Variable not found: FuncOne', 'E121: Undefined variable: FuncTwo']) enddef -def Test_expr1_trinary_vimscript() +def Test_expr1_ternary_vimscript() # check line continuation var lines =<< trim END var name = 1 @@ -170,7 +170,7 @@ def Test_expr1_trinary_vimscript() v9.CheckDefAndScriptSuccess(lines) enddef -func Test_expr1_trinary_fails() +func Test_expr1_ternary_fails() call v9.CheckDefAndScriptFailure(["var x = 1 ? 'one'"], "Missing ':' after '?'", 1) let msg = "White space required before and after '?'" diff --git a/src/testdir/test_vimscript.vim b/src/testdir/test_vimscript.vim --- a/src/testdir/test_vimscript.vim +++ b/src/testdir/test_vimscript.vim @@ -7475,7 +7475,7 @@ func Test_typed_script_var() endfunc " Test for issue6776 {{{1 -func Test_trinary_expression() +func Test_ternary_expression() try call eval('0 ? 0') catch diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4476, +/**/ 4475, /**/ 4474,