Patch 7.4.1391
Problem: Warning for uninitialzed variable.
Solution: Set it to zero. (Christian Brabandt)
Files: src/eval.c
*** ../vim-7.4.1390/src/eval.c 2016-02-22 20:20:21.404530530 +0100
--- src/eval.c 2016-02-22 21:45:29.599359250 +0100
***************
*** 9489,9495 ****
static void
f_atan(typval_T *argvars, typval_T *rettv)
{
! float_T f;
rettv->v_type = VAR_FLOAT;
if (get_float_arg(argvars, &f) == OK)
--- 9489,9495 ----
static void
f_atan(typval_T *argvars, typval_T *rettv)
{
! float_T f = 0.0;
rettv->v_type = VAR_FLOAT;
if (get_float_arg(argvars, &f) == OK)
*** ../vim-7.4.1390/src/version.c 2016-02-22 21:07:01.887474438 +0100
--- src/version.c 2016-02-22 21:48:17.137601875 +0100
***************
*** 750,751 ****
--- 750,753 ----
{ /* Add new patch number below this line */
+ /**/
+ 1391,
/**/
--
BLACK KNIGHT: I move for no man.
ARTHUR: So be it!
[hah] [parry thrust]
[ARTHUR chops the BLACK KNIGHT's left arm off]
ARTHUR: Now stand aside, worthy adversary.
BLACK KNIGHT: 'Tis but a scratch.
The Quest for the Holy Grail (Monty Python)
/// 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.