]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.050
- updated to 0.7.3
[packages/vim.git] / 7.0.050
CommitLineData
1242c4cb
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.050
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.0.050
11Problem: After using the netbeans interface close command a stale pointer
12 may be used.
13Solution: Clear the pointer to the closed buffer. (Xaview de Gaye)
14Files: src/netbeans.c
15
16
17*** ../vim-7.0.049/src/netbeans.c Sun Apr 23 00:21:07 2006
18--- src/netbeans.c Fri Aug 4 23:02:54 2006
19***************
20*** 1986,1991 ****
21--- 1986,1993 ----
22 if (buf->bufp != NULL)
23 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
24 buf->bufp->b_fnum, TRUE);
25+ buf->bufp = NULL;
26+ buf->initDone = FALSE;
27 doupdate = 1;
28 /* =====================================================================*/
29 }
30*** ../vim-7.0.049/src/version.c Tue Aug 8 20:56:11 2006
31--- src/version.c Tue Aug 8 21:35:25 2006
32***************
33*** 668,669 ****
34--- 668,671 ----
35 { /* Add new patch number below this line */
36+ /**/
37+ 50,
38 /**/
39
40--
41From "know your smileys":
42 :-E Has major dental problems
43
44 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
45/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
46\\\ download, build and distribute -- http://www.A-A-P.org ///
47 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.028115 seconds and 4 git commands to generate.