|
Karsten Hopp |
7758cf |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
7758cf |
Subject: Patch 7.3.1279
|
|
Karsten Hopp |
7758cf |
Fcc: outbox
|
|
Karsten Hopp |
7758cf |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
7758cf |
Mime-Version: 1.0
|
|
Karsten Hopp |
7758cf |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
7758cf |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
7758cf |
------------
|
|
Karsten Hopp |
7758cf |
|
|
Karsten Hopp |
7758cf |
Patch 7.3.1279
|
|
Karsten Hopp |
7758cf |
Problem: Compiler warning for variable uninitialized. (Tony Mechelynck)
|
|
Karsten Hopp |
7758cf |
Solution: Add an init.
|
|
Karsten Hopp |
7758cf |
Files: src/ex_getln.c
|
|
Karsten Hopp |
7758cf |
|
|
Karsten Hopp |
7758cf |
|
|
Karsten Hopp |
7758cf |
*** ../vim-7.3.1278/src/ex_getln.c 2013-06-30 12:21:18.000000000 +0200
|
|
Karsten Hopp |
7758cf |
--- src/ex_getln.c 2013-06-30 22:41:29.000000000 +0200
|
|
Karsten Hopp |
7758cf |
***************
|
|
Karsten Hopp |
7758cf |
*** 4951,4957 ****
|
|
Karsten Hopp |
7758cf |
int *num_file;
|
|
Karsten Hopp |
7758cf |
char_u ***file;
|
|
Karsten Hopp |
7758cf |
{
|
|
Karsten Hopp |
7758cf |
! char_u keep;
|
|
Karsten Hopp |
7758cf |
char_u num[50];
|
|
Karsten Hopp |
7758cf |
char_u *args[3];
|
|
Karsten Hopp |
7758cf |
int save_current_SID = current_SID;
|
|
Karsten Hopp |
7758cf |
--- 4951,4957 ----
|
|
Karsten Hopp |
7758cf |
int *num_file;
|
|
Karsten Hopp |
7758cf |
char_u ***file;
|
|
Karsten Hopp |
7758cf |
{
|
|
Karsten Hopp |
7758cf |
! int keep = 0;
|
|
Karsten Hopp |
7758cf |
char_u num[50];
|
|
Karsten Hopp |
7758cf |
char_u *args[3];
|
|
Karsten Hopp |
7758cf |
int save_current_SID = current_SID;
|
|
Karsten Hopp |
7758cf |
*** ../vim-7.3.1278/src/version.c 2013-06-30 17:51:46.000000000 +0200
|
|
Karsten Hopp |
7758cf |
--- src/version.c 2013-06-30 22:42:17.000000000 +0200
|
|
Karsten Hopp |
7758cf |
***************
|
|
Karsten Hopp |
7758cf |
*** 730,731 ****
|
|
Karsten Hopp |
7758cf |
--- 730,733 ----
|
|
Karsten Hopp |
7758cf |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
7758cf |
+ /**/
|
|
Karsten Hopp |
7758cf |
+ 1279,
|
|
Karsten Hopp |
7758cf |
/**/
|
|
Karsten Hopp |
7758cf |
|
|
Karsten Hopp |
7758cf |
--
|
|
Karsten Hopp |
7758cf |
WOMAN: Well, 'ow did you become king then?
|
|
Karsten Hopp |
7758cf |
ARTHUR: The Lady of the Lake, [angels sing] her arm clad in the purest
|
|
Karsten Hopp |
7758cf |
shimmering samite, held aloft Excalibur from the bosom of the water
|
|
Karsten Hopp |
7758cf |
signifying by Divine Providence that I, Arthur, was to carry
|
|
Karsten Hopp |
7758cf |
Excalibur. [singing stops] That is why I am your king!
|
|
Karsten Hopp |
7758cf |
The Quest for the Holy Grail (Monty Python)
|
|
Karsten Hopp |
7758cf |
|
|
Karsten Hopp |
7758cf |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
7758cf |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
7758cf |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
7758cf |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|