Patch 7.4.1273 (after 7.4.1271)
Problem: assert_false(v:false) still fails.
Solution: Fix the typo.
Files: src/eval.c
*** ../vim-7.4.1272/src/eval.c 2016-02-06 20:29:24.357275499 +0100
--- src/eval.c 2016-02-06 23:56:35.150539328 +0100
***************
*** 9217,9223 ****
garray_T ga;
if (argvars[0].v_type == VAR_SPECIAL
! && argvars[0].vval.v_number == (isTrue ? VVAL_TRUE : VV_FALSE))
return;
if (argvars[0].v_type != VAR_NUMBER
|| (get_tv_number_chk(&argvars[0], &error) == 0) == isTrue
--- 9274,9280 ----
garray_T ga;
if (argvars[0].v_type == VAR_SPECIAL
! && argvars[0].vval.v_number == (isTrue ? VVAL_TRUE : VVAL_FALSE))
return;
if (argvars[0].v_type != VAR_NUMBER
|| (get_tv_number_chk(&argvars[0], &error) == 0) == isTrue
*** ../vim-7.4.1272/src/version.c 2016-02-06 20:32:20.879442156 +0100
--- src/version.c 2016-02-06 23:59:26.220741366 +0100
***************
*** 744,745 ****
--- 749,752 ----
{ /* Add new patch number below this line */
+ /**/
+ 1273,
/**/
--
If you feel lonely, try schizophrenia.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.