Patrick Texier wrote:
> Using Borland C++ 5.5, I have the following warnings:
>
> Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
> .\ex_cmds.c:
> Warning W8065 .\ex_cmds.c 6612: Call to function 'sign_cmd_idx' with no
> prototype in function ex_sign
> Warning W8065 .\ex_cmds.c 7227: Call to function 'sign_cmd_idx' with no
> prototype in function set_context_in_sign_cmd
>
> .\os_mswin.c:
> Warning W8065 .\os_mswin.c 1276: Call to function 'vim_open_clipboard'
> with no prototype in function clip_mch_request_selection
> Warning W8065 .\os_mswin.c 1584: Call to function 'vim_open_clipboard'
> with no prototype in function clip_mch_set_selection
>
> Attached patch fixes this.
Thanks. I think the problem in os_mswin.c can be fixed in that file by
adding (void):
static int
vim_open_clipboard(void)
{
--
"I know that there are people who don't love their fellow man,
and I hate those people!" - Tom Lehrer
/// 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
-~----------~----~----~----~------~----~------~--~---