]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.084
- typo
[packages/vim.git] / 7.1.084
1 To: vim-dev@vim.org
2 Subject: patch 7.1.084
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 7.1.084
11 Problem:    Using the "-nb" argument twice causes netbeans not to get
12             fileOpened events.
13 Solution:   Change "&" to "&&". (Xavier de Gaye)
14 Files:      src/ex_cmds.c
15
16
17 *** ../vim-7.1.083/src/ex_cmds.c        Wed Jul 25 22:55:22 2007
18 --- src/ex_cmds.c       Tue Aug 21 15:02:43 2007
19 ***************
20 *** 3776,3782 ****
21             workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
22   # endif
23   # ifdef FEAT_NETBEANS_INTG
24 !       if (usingNetbeans & ((flags & ECMD_SET_HELP) != ECMD_SET_HELP))
25             netbeans_file_opened(curbuf);
26   # endif
27       }
28 --- 3787,3793 ----
29             workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
30   # endif
31   # ifdef FEAT_NETBEANS_INTG
32 !       if (usingNetbeans && ((flags & ECMD_SET_HELP) != ECMD_SET_HELP))
33             netbeans_file_opened(curbuf);
34   # endif
35       }
36 *** ../vim-7.1.083/src/version.c        Sun Aug 19 22:42:27 2007
37 --- src/version.c       Tue Aug 21 15:04:03 2007
38 ***************
39 *** 668,669 ****
40 --- 668,671 ----
41   {   /* Add new patch number below this line */
42 + /**/
43 +     84,
44   /**/
45
46 -- 
47 hundred-and-one symptoms of being an internet addict:
48 220. Your wife asks for sex and you tell her where to find you on IRC.
49
50  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
51 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52 \\\        download, build and distribute -- http://www.A-A-P.org        ///
53  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.030661 seconds and 3 git commands to generate.