After 7.4.1169 and others, as of 7.4.1174, compile on windows has netbeans.c(298) : warning C4013: 'channel_init_winsock' undefined; assuming extern returning int
problem is in proto/gui_win32.pro void netbeans_init_winsock(void) should be void channel_init_winsock(void) diff attached ------------------------ small issue: test_writefile does not clean up tempfile Resolve with call to delete -- diff attached ------------------------ small issue: test_viml does not clean up tempfile This happens when runtest.vim calls function Test_endwhile_script. The file is created but not deleted by command ExecAsScript T1_G. This is testing try/catch; not sure how to fix. ------------------------ Charles Cooper -- -- 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.
*** old\gui_w32.pro 2016-01-22 23:46:13.000000000 -0500 --- new\gui_w32.pro 2016-01-24 21:50:29.297826800 -0500 *************** *** 96,100 **** BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); void gui_mch_destroy_beval_area(BalloonEval *beval); void netbeans_draw_multisign_indicator(int row); ! void netbeans_init_winsock(void); /* vim: set ft=c : */ --- 96,100 ---- BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); void gui_mch_destroy_beval_area(BalloonEval *beval); void netbeans_draw_multisign_indicator(int row); ! void channel_init_winsock(void); /* vim: set ft=c : */
*** old\test_writefile.in 2015-08-23 18:44:01.000000000 -0400 --- new\test_writefile.in 2016-01-24 21:18:49.069028400 -0500 *************** *** 13,18 **** --- 13,19 ---- :$put =readfile(f) :1 delete _ :w! test.out + :call delete(f) :qa! ENDTEST
