]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.104
- manpaged md5 fix
[packages/vim.git] / 6.2.104
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.104
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.104
11 Problem:    Unmatched braces in the table with options.
12 Solution:   Move the "}," outside of the #ifdef. (Yakov Lerner)
13 Files:      src/option.c
14
15
16 *** ../vim-6.2.103/src/option.c Fri Sep 12 20:56:50 2003
17 --- src/option.c        Wed Sep 24 22:24:00 2003
18 ***************
19 *** 653,663 ****
20       {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
21   #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
22                             (char_u *)&p_csqf, PV_NONE,
23 !                           {(char_u *)"", (char_u *)0L}},
24   #else
25                             (char_u *)NULL, PV_NONE,
26 !                           {(char_u *)0L, (char_u *)0L}},
27   #endif
28       {"cscopetag",   "cst",  P_BOOL|P_VI_DEF|P_VIM,
29   #ifdef FEAT_CSCOPE
30                             (char_u *)&p_cst, PV_NONE,
31 --- 653,664 ----
32       {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
33   #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX)
34                             (char_u *)&p_csqf, PV_NONE,
35 !                           {(char_u *)"", (char_u *)0L}
36   #else
37                             (char_u *)NULL, PV_NONE,
38 !                           {(char_u *)0L, (char_u *)0L}
39   #endif
40 +                           },
41       {"cscopetag",   "cst",  P_BOOL|P_VI_DEF|P_VIM,
42   #ifdef FEAT_CSCOPE
43                             (char_u *)&p_cst, PV_NONE,
44 *** ../vim-6.2.103/src/version.c        Sat Sep 27 19:40:03 2003
45 --- src/version.c       Sat Sep 27 19:41:57 2003
46 ***************
47 *** 632,633 ****
48 --- 638,641 ----
49   {   /* Add new patch number below this line */
50 + /**/
51 +     104,
52   /**/
53
54 -- 
55 hundred-and-one symptoms of being an internet addict:
56 36. You miss more than five meals a week downloading the latest games from
57     Apogee.
58
59  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
60 ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
61 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
62  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.030926 seconds and 3 git commands to generate.