]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.106
- updated to 7.1.326
[packages/vim.git] / 7.1.106
1 To: vim-dev@vim.org
2 Subject: patch 7.1.106
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.106
11 Problem:    ":messages" doesn't quit listing on ":".
12 Solution:   Break the loop when "got_int" is set.
13 Files:      src/message.c
14
15
16 *** ../vim-7.1.105/src/message.c        Thu Sep  6 12:53:59 2007
17 --- src/message.c       Thu Sep 13 21:45:57 2007
18 ***************
19 *** 828,834 ****
20                 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
21                 hl_attr(HLF_T));
22   
23 !     for (p = first_msg_hist; p != NULL; p = p->next)
24         if (p->msg != NULL)
25             msg_attr(p->msg, p->attr);
26   
27 --- 828,834 ----
28                 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
29                 hl_attr(HLF_T));
30   
31 !     for (p = first_msg_hist; p != NULL && !got_int; p = p->next)
32         if (p->msg != NULL)
33             msg_attr(p->msg, p->attr);
34   
35 *** ../vim-7.1.105/src/version.c        Thu Sep 13 20:39:58 2007
36 --- src/version.c       Thu Sep 13 21:57:40 2007
37 ***************
38 *** 668,669 ****
39 --- 668,671 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     106,
43   /**/
44
45 -- 
46 I'm sure that I asked CBuilder to do a "full" install.  Looks like I got
47 a "fool" install, instead.              Charles E Campbell, Jr, PhD
48
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.032781 seconds and 3 git commands to generate.