On Saturday, April 12, 2014 6:49:32 AM UTC+8, [email protected] wrote: > Comment #1 on issue 216 by [email protected]: Syntax error in src/ops.c > > after 7.4.242? > > http://code.google.com/p/vim/issues/detail?id=216 > > > > It is still broken for 7.4.256 :/ Is there really no solution? I have > > no idea where the syntax error is coming from..
Probably mismatch parameter name in the prototype and definition? diff --git a/src/ops.c b/src/ops.c --- a/src/ops.c +++ b/src/ops.c @@ -113,7 +113,7 @@ #endif static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int)); #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL) -static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen, int str_list)); +static void str_to_reg __ARGS((struct yankreg *y_ptr, int yank_type, char_u *str, long len, long blocklen, int str_list)); #endif static int ends_in_white __ARGS((linenr_T lnum)); #ifdef FEAT_COMMENTS -- -- 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.
