|
Karsten Hopp |
f07892 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
f07892 |
Subject: Patch 7.3.842
|
|
Karsten Hopp |
f07892 |
Fcc: outbox
|
|
Karsten Hopp |
f07892 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
f07892 |
Mime-Version: 1.0
|
|
Karsten Hopp |
f07892 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
f07892 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
f07892 |
------------
|
|
Karsten Hopp |
f07892 |
|
|
Karsten Hopp |
f07892 |
Patch 7.3.842
|
|
Karsten Hopp |
f07892 |
Problem: Compiler warning for signed/unsigned pointer.
|
|
Karsten Hopp |
f07892 |
Solution: Add type cast. (Christian Brabandt)
|
|
Karsten Hopp |
f07892 |
Files: src/eval.c
|
|
Karsten Hopp |
f07892 |
|
|
Karsten Hopp |
f07892 |
|
|
Karsten Hopp |
f07892 |
*** ../vim-7.3.841/src/eval.c 2013-02-26 19:36:03.000000000 +0100
|
|
Karsten Hopp |
f07892 |
--- src/eval.c 2013-02-26 21:41:24.000000000 +0100
|
|
Karsten Hopp |
f07892 |
***************
|
|
Karsten Hopp |
f07892 |
*** 5170,5176 ****
|
|
Karsten Hopp |
f07892 |
* what follows. So set it here. */
|
|
Karsten Hopp |
f07892 |
if (rettv->v_type == VAR_UNKNOWN && !evaluate && **arg == '(')
|
|
Karsten Hopp |
f07892 |
{
|
|
Karsten Hopp |
f07892 |
! rettv->vval.v_string = vim_strsave("");
|
|
Karsten Hopp |
f07892 |
rettv->v_type = VAR_FUNC;
|
|
Karsten Hopp |
f07892 |
}
|
|
Karsten Hopp |
f07892 |
|
|
Karsten Hopp |
f07892 |
--- 5170,5176 ----
|
|
Karsten Hopp |
f07892 |
* what follows. So set it here. */
|
|
Karsten Hopp |
f07892 |
if (rettv->v_type == VAR_UNKNOWN && !evaluate && **arg == '(')
|
|
Karsten Hopp |
f07892 |
{
|
|
Karsten Hopp |
f07892 |
! rettv->vval.v_string = vim_strsave((char_u *)"");
|
|
Karsten Hopp |
f07892 |
rettv->v_type = VAR_FUNC;
|
|
Karsten Hopp |
f07892 |
}
|
|
Karsten Hopp |
f07892 |
|
|
Karsten Hopp |
f07892 |
*** ../vim-7.3.841/src/version.c 2013-02-26 19:36:03.000000000 +0100
|
|
Karsten Hopp |
f07892 |
--- src/version.c 2013-02-26 21:43:21.000000000 +0100
|
|
Karsten Hopp |
f07892 |
***************
|
|
Karsten Hopp |
f07892 |
*** 730,731 ****
|
|
Karsten Hopp |
f07892 |
--- 730,733 ----
|
|
Karsten Hopp |
f07892 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
f07892 |
+ /**/
|
|
Karsten Hopp |
f07892 |
+ 842,
|
|
Karsten Hopp |
f07892 |
/**/
|
|
Karsten Hopp |
f07892 |
|
|
Karsten Hopp |
f07892 |
--
|
|
Karsten Hopp |
f07892 |
The process for understanding customers primarily involves sitting around with
|
|
Karsten Hopp |
f07892 |
other marketing people and talking about what you would to if you were dumb
|
|
Karsten Hopp |
f07892 |
enough to be a customer.
|
|
Karsten Hopp |
f07892 |
(Scott Adams - The Dilbert principle)
|
|
Karsten Hopp |
f07892 |
|
|
Karsten Hopp |
f07892 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
f07892 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
f07892 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
f07892 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|