]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.114
- new
[packages/vim.git] / 7.3.114
CommitLineData
57d93a78
ER
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.114
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.114
11Problem: Potential problem in initialization when giving an error message
12 early.
13Solution: Initialize 'verbosefile' empty. (Ben Schmidt)
14Files: src/option.h
15
16
17*** ../vim-7.3.113/src/option.h 2010-12-02 16:01:23.000000000 +0100
18--- src/option.h 2011-02-09 15:37:36.000000000 +0100
19***************
20*** 854,860 ****
21--- 854,864 ----
22 # define VE_ONEMORE 8
23 #endif
24 EXTERN long p_verbose; /* 'verbose' */
25+ #ifdef IN_OPTION_C
26+ char_u *p_vfile = (char_u *)""; /* used before options are initialized */
27+ #else
28 EXTERN char_u *p_vfile; /* 'verbosefile' */
29+ #endif
30 EXTERN int p_warn; /* 'warn' */
31 #ifdef FEAT_CMDL_COMPL
32 EXTERN char_u *p_wop; /* 'wildoptions' */
33*** ../vim-7.3.113/src/version.c 2011-02-09 14:46:58.000000000 +0100
34--- src/version.c 2011-02-09 15:46:17.000000000 +0100
35***************
36*** 716,717 ****
37--- 716,719 ----
38 { /* Add new patch number below this line */
39+ /**/
40+ 114,
41 /**/
42
43--
44From the classified section of a city newspaper:
45Dog for sale: eats anything and is fond of children.
46
47 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
48/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
49\\\ an exciting new programming language -- http://www.Zimbu.org ///
50 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.050533 seconds and 4 git commands to generate.