|
Karsten Hopp |
81c285 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
81c285 |
Subject: Patch 7.2.197
|
|
Karsten Hopp |
81c285 |
Fcc: outbox
|
|
Karsten Hopp |
81c285 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
81c285 |
Mime-Version: 1.0
|
|
Karsten Hopp |
81c285 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
81c285 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
81c285 |
------------
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
Patch 7.2.197
|
|
Karsten Hopp |
81c285 |
Problem: Warning for uninitialized values.
|
|
Karsten Hopp |
81c285 |
Solution: Initialize all the struct items of typebuf.
|
|
Karsten Hopp |
81c285 |
Files: src/globals.h
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
*** ../vim-7.2.196/src/globals.h 2009-05-13 12:46:36.000000000 +0200
|
|
Karsten Hopp |
81c285 |
--- src/globals.h 2009-06-10 15:52:18.000000000 +0200
|
|
Karsten Hopp |
81c285 |
***************
|
|
Karsten Hopp |
81c285 |
*** 960,966 ****
|
|
Karsten Hopp |
81c285 |
;
|
|
Karsten Hopp |
81c285 |
EXTERN typebuf_T typebuf /* typeahead buffer */
|
|
Karsten Hopp |
81c285 |
#ifdef DO_INIT
|
|
Karsten Hopp |
81c285 |
! = {NULL, NULL}
|
|
Karsten Hopp |
81c285 |
#endif
|
|
Karsten Hopp |
81c285 |
;
|
|
Karsten Hopp |
81c285 |
#ifdef FEAT_EX_EXTRA
|
|
Karsten Hopp |
81c285 |
--- 967,973 ----
|
|
Karsten Hopp |
81c285 |
;
|
|
Karsten Hopp |
81c285 |
EXTERN typebuf_T typebuf /* typeahead buffer */
|
|
Karsten Hopp |
81c285 |
#ifdef DO_INIT
|
|
Karsten Hopp |
81c285 |
! = {NULL, NULL, 0, 0, 0, 0, 0, 0, 0}
|
|
Karsten Hopp |
81c285 |
#endif
|
|
Karsten Hopp |
81c285 |
;
|
|
Karsten Hopp |
81c285 |
#ifdef FEAT_EX_EXTRA
|
|
Karsten Hopp |
81c285 |
*** ../vim-7.2.196/src/version.c 2009-06-03 22:07:38.000000000 +0200
|
|
Karsten Hopp |
81c285 |
--- src/version.c 2009-06-10 18:14:58.000000000 +0200
|
|
Karsten Hopp |
81c285 |
***************
|
|
Karsten Hopp |
81c285 |
*** 678,679 ****
|
|
Karsten Hopp |
81c285 |
--- 678,681 ----
|
|
Karsten Hopp |
81c285 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
81c285 |
+ /**/
|
|
Karsten Hopp |
81c285 |
+ 197,
|
|
Karsten Hopp |
81c285 |
/**/
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
--
|
|
Karsten Hopp |
81c285 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
81c285 |
18. Your wife drapes a blond wig over your monitor to remind you of what she
|
|
Karsten Hopp |
81c285 |
looks like.
|
|
Karsten Hopp |
81c285 |
|
|
Karsten Hopp |
81c285 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
81c285 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
81c285 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
81c285 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|