comparison src/eval.c @ 30986:360f286b5869 v9.0.0828

patch 9.0.0828: various typos Commit: https://github.com/vim/vim/commit/c57b5bcd22826e0852c2bc9c7d4382e1cac7cb74 Author: dundargoc <gocdundar@gmail.com> Date: Wed Nov 2 13:30:51 2022 +0000 patch 9.0.0828: various typos Problem: Various typos. Solution: Correct typos. (closes https://github.com/vim/vim/issues/11432)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Nov 2022 14:45:11 +0100
parents 5bc99d85f773
children a09404dad917
comparison
equal deleted inserted replaced
30985:25894f29103e 30986:360f286b5869
3267 { 3267 {
3268 // right operand should be a positive number 3268 // right operand should be a positive number
3269 if (var2.v_type != VAR_NUMBER) 3269 if (var2.v_type != VAR_NUMBER)
3270 emsg(_(e_bitshift_ops_must_be_number)); 3270 emsg(_(e_bitshift_ops_must_be_number));
3271 else 3271 else
3272 emsg(_(e_bitshift_ops_must_be_postive)); 3272 emsg(_(e_bitshift_ops_must_be_positive));
3273 clear_tv(rettv); 3273 clear_tv(rettv);
3274 clear_tv(&var2); 3274 clear_tv(&var2);
3275 return FAIL; 3275 return FAIL;
3276 } 3276 }
3277 3277