]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.104
- initial import
[packages/vim.git] / 6.2.104
CommitLineData
717fd8f6
AF
1To: vim-dev@vim.org
2Subject: Patch 6.2.104
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.2.104
11Problem: Unmatched braces in the table with options.
12Solution: Move the "}," outside of the #ifdef. (Yakov Lerner)
13Files: 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--
55hundred-and-one symptoms of being an internet addict:
5636. 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.03431 seconds and 4 git commands to generate.