]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.225
- initial import
[packages/vim.git] / 6.2.225
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.225
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.225
11 Problem:    NetBeans: Reported modified state isn't exactly right.
12 Solution:   Report a file being modified in the NetBeans way.
13 Files:      src/netbeans.c
14
15
16 *** ../vim-6.2.224/src/netbeans.c       Mon Feb  2 12:53:51 2004
17 --- src/netbeans.c      Sun Feb  1 15:21:15 2004
18 ***************
19 *** 1120,1126 ****
20                 nb_reply_nr(cmdno, (long)count_changed_buffers());
21             else
22                 /* Return whether the buffer is modified. */
23 !               nb_reply_nr(cmdno, (long)buf->bufp->b_changed);
24   /* =====================================================================*/
25         }
26         else if (streq((char *)cmd, "saveAndExit"))
27 --- 1120,1127 ----
28                 nb_reply_nr(cmdno, (long)count_changed_buffers());
29             else
30                 /* Return whether the buffer is modified. */
31 !               nb_reply_nr(cmdno, (long)(buf->bufp->b_changed
32 !                                          || isNetbeansModified(buf->bufp)));
33   /* =====================================================================*/
34         }
35         else if (streq((char *)cmd, "saveAndExit"))
36 *** ../vim-6.2.224/src/version.c        Mon Feb  2 13:00:19 2004
37 --- src/version.c       Mon Feb  2 13:01:46 2004
38 ***************
39 *** 639,640 ****
40 --- 639,642 ----
41   {   /* Add new patch number below this line */
42 + /**/
43 +     225,
44   /**/
45
46 -- 
47 hundred-and-one symptoms of being an internet addict:
48 26. You check your mail. It says "no new messages." So you check it again.
49
50  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
51 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
53  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.058134 seconds and 3 git commands to generate.