]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.471
- up to 7.3.600
[packages/vim.git] / 7.3.471
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.471
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.471
11 Problem:    Can't abort listing placed signs.
12 Solution:   Check "got_int". (Christian Brabandt)
13 Files:      src/buffer.c, src/ex_cmds.c
14
15
16 *** ../vim-7.3.470/src/buffer.c 2012-03-07 22:52:30.000000000 +0100
17 --- src/buffer.c        2012-03-16 13:54:48.000000000 +0100
18 ***************
19 *** 5557,5563 ****
20         buf = firstbuf;
21       else
22         buf = rbuf;
23 !     while (buf != NULL)
24       {
25         if (buf->b_signlist != NULL)
26         {
27 --- 5557,5563 ----
28         buf = firstbuf;
29       else
30         buf = rbuf;
31 !     while (buf != NULL && !got_int)
32       {
33         if (buf->b_signlist != NULL)
34         {
35 ***************
36 *** 5565,5571 ****
37             MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
38             msg_putchar('\n');
39         }
40 !       for (p = buf->b_signlist; p != NULL; p = p->next)
41         {
42             vim_snprintf(lbuf, BUFSIZ, _("    line=%ld  id=%d  name=%s"),
43                            (long)p->lnum, p->id, sign_typenr2name(p->typenr));
44 --- 5565,5571 ----
45             MSG_PUTS_ATTR(lbuf, hl_attr(HLF_D));
46             msg_putchar('\n');
47         }
48 !       for (p = buf->b_signlist; p != NULL && !got_int; p = p->next)
49         {
50             vim_snprintf(lbuf, BUFSIZ, _("    line=%ld  id=%d  name=%s"),
51                            (long)p->lnum, p->id, sign_typenr2name(p->typenr));
52 *** ../vim-7.3.470/src/ex_cmds.c        2012-03-07 14:57:50.000000000 +0100
53 --- src/ex_cmds.c       2012-03-16 13:58:50.000000000 +0100
54 ***************
55 *** 6729,6735 ****
56         if (idx == SIGNCMD_LIST && *arg == NUL)
57         {
58             /* ":sign list": list all defined signs */
59 !           for (sp = first_sign; sp != NULL; sp = sp->sn_next)
60                 sign_list_defined(sp);
61         }
62         else if (*arg == NUL)
63 --- 6729,6735 ----
64         if (idx == SIGNCMD_LIST && *arg == NUL)
65         {
66             /* ":sign list": list all defined signs */
67 !           for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
68                 sign_list_defined(sp);
69         }
70         else if (*arg == NUL)
71 *** ../vim-7.3.470/src/version.c        2012-03-07 22:55:17.000000000 +0100
72 --- src/version.c       2012-03-16 13:55:28.000000000 +0100
73 ***************
74 *** 716,717 ****
75 --- 716,719 ----
76   {   /* Add new patch number below this line */
77 + /**/
78 +     471,
79   /**/
80
81 -- 
82 Some of the well know MS-Windows errors:
83         EMEMORY         Memory error caused by..., eh...
84         ELICENSE        Your license has expired, give us more money!
85         EMOUSE          Mouse moved, reinstall Windows
86         EILLEGAL        Illegal error, you are not allowed to see this
87         EVIRUS          Undetectable virus found
88
89  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
90 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
91 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
92  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.03118 seconds and 3 git commands to generate.