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