]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.106
- recognize update_mime_database
[packages/vim.git] / 7.1.106
CommitLineData
c0949972
ER
1To: vim-dev@vim.org
2Subject: patch 7.1.106
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.106
11Problem: ":messages" doesn't quit listing on ":".
12Solution: Break the loop when "got_int" is set.
13Files: 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--
46I'm sure that I asked CBuilder to do a "full" install. Looks like I got
47a "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.035381 seconds and 4 git commands to generate.