|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.257
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.257
|
|
|
3ef2ca |
Problem: Compiler warning, possibly for mismatch in parameter name.
|
|
|
3ef2ca |
Solution: Rename the parameter in the declaration.
|
|
|
3ef2ca |
Files: src/ops.c
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.256/src/ops.c 2014-04-02 22:17:00.003482236 +0200
|
|
|
3ef2ca |
--- src/ops.c 2014-04-12 12:23:59.308424067 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 113,119 ****
|
|
|
3ef2ca |
#endif
|
|
|
3ef2ca |
static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
|
|
|
3ef2ca |
#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
|
|
|
3ef2ca |
! static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen, int str_list));
|
|
|
3ef2ca |
#endif
|
|
|
3ef2ca |
static int ends_in_white __ARGS((linenr_T lnum));
|
|
|
3ef2ca |
#ifdef FEAT_COMMENTS
|
|
|
3ef2ca |
--- 113,119 ----
|
|
|
3ef2ca |
#endif
|
|
|
3ef2ca |
static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
|
|
|
3ef2ca |
#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
|
|
|
3ef2ca |
! static void str_to_reg __ARGS((struct yankreg *y_ptr, int yank_type, char_u *str, long len, long blocklen, int str_list));
|
|
|
3ef2ca |
#endif
|
|
|
3ef2ca |
static int ends_in_white __ARGS((linenr_T lnum));
|
|
|
3ef2ca |
#ifdef FEAT_COMMENTS
|
|
|
3ef2ca |
*** ../vim-7.4.256/src/version.c 2014-04-11 10:22:46.288219453 +0200
|
|
|
3ef2ca |
--- src/version.c 2014-04-12 12:25:44.176424296 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 736,737 ****
|
|
|
3ef2ca |
--- 736,739 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 257,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
The real
|
|
|
3ef2ca |
trick is
|
|
|
3ef2ca |
this: to
|
|
|
3ef2ca |
keep the
|
|
|
3ef2ca |
lines as
|
|
|
3ef2ca |
short as
|
|
|
3ef2ca |
possible
|
|
|
3ef2ca |
and keep
|
|
|
3ef2ca |
the size
|
|
|
3ef2ca |
the same
|
|
|
3ef2ca |
yet free
|
|
|
3ef2ca |
from the
|
|
|
3ef2ca |
need for
|
|
|
3ef2ca |
hyphena-
|
|
|
3ef2ca |
Dammit!! (Matthew Winn)
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|