]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.084
- new
[packages/vim.git] / 7.1.084
CommitLineData
0a7814d6
AG
1To: vim-dev@vim.org
2Subject: patch 7.1.084
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 7.1.084
11Problem: Using the "-nb" argument twice causes netbeans not to get
12 fileOpened events.
13Solution: Change "&" to "&&". (Xavier de Gaye)
14Files: 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--
47hundred-and-one symptoms of being an internet addict:
48220. 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.368218 seconds and 4 git commands to generate.