John Beckett wrote:
> Bram Moolenaar wrote:
> > Here is an update for the floating point patch. The 'g' argument for
> > printf() was implemented and a few bug fixes.
>
> I have compiled with this updated floating point patch under win32.
> Here are some issues you might like to address.
>
> os_win32.h now has '#define HAVE_POW' in an attempt to make FEAT_FLOAT
> the default. However, it doesn't work (FEAT_FLOAT is not the default)
> because in vim.h, feature.h is included before os_win32.h (so HAVE_POW
> does not enable FEAT_FLOAT).
Right. I'll change the condition in feature.h:
#ifdef FEAT_NORMAL
# define FEAT_EVAL
# if defined(HAVE_POW) || defined(WIN3264) || defined(MACOS)
# define FEAT_FLOAT
# endif
#endif
> Two inconsequential compiler warnings occur:
>
> eval.c (8482) : signed/unsigned mismatch
> if (idx <= STRLEN(str))
>
> ex_cmds.c (1912) : 'open' undefined
> fd = mch_open((char *)tempname,
I'll fix those. Unrelated to the floating point stuff though. Thanks.
--
"Never be afraid to tell the world who you are."
-- Anonymous
/// Bram Moolenaar -- [EMAIL PROTECTED] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ download, build and distribute -- http://www.A-A-P.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---