]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.352
- updated to 6.2.430
[packages/vim.git] / 6.2.352
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.352
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.352 (after 6.2.335)
11 Problem:    ":sign texthl=||" does not work.
12 Solution:   Remove the check for a following command.  Give an error for extra
13             arguments after "buffer=1".
14 Files:      src/ex_cmds.c, src/ex_cmds.h
15
16
17 *** ../vim-6.2.351/src/ex_cmds.c        Sun Feb 29 21:06:13 2004
18 --- src/ex_cmds.c       Sat Mar 13 14:26:18 2004
19 ***************
20 *** 5777,5783 ****
21             else if (STRNCMP(arg, "buffer=", 7) == 0)
22             {
23                 arg += 7;
24 !               buf = buflist_findnr(atoi((char *)arg));
25                 break;
26             }
27             else
28 --- 5777,5785 ----
29             else if (STRNCMP(arg, "buffer=", 7) == 0)
30             {
31                 arg += 7;
32 !               buf = buflist_findnr(getdigits(&arg));
33 !               if (*skipwhite(arg) != NUL)
34 !                   EMSG(_(e_trailing));
35                 break;
36             }
37             else
38 *** ../vim-6.2.351/src/ex_cmds.h        Tue Mar  9 15:10:47 2004
39 --- src/ex_cmds.h       Sat Mar 13 12:47:09 2004
40 ***************
41 *** 707,713 ****
42   EX(CMD_simalt,                "simalt",       ex_simalt,
43                         NEEDARG|WORD1|TRLBAR|CMDWIN),
44   EX(CMD_sign,          "sign",         ex_sign,
45 !                       NEEDARG|RANGE|NOTADR|EXTRA|CMDWIN|TRLBAR),
46   EX(CMD_silent,                "silent",       ex_wrongmodifier,
47                         NEEDARG|EXTRA|BANG|NOTRLCOM|SBOXOK|CMDWIN),
48   EX(CMD_sleep,         "sleep",        ex_sleep,
49 --- 707,713 ----
50   EX(CMD_simalt,                "simalt",       ex_simalt,
51                         NEEDARG|WORD1|TRLBAR|CMDWIN),
52   EX(CMD_sign,          "sign",         ex_sign,
53 !                       NEEDARG|RANGE|NOTADR|EXTRA|CMDWIN),
54   EX(CMD_silent,                "silent",       ex_wrongmodifier,
55                         NEEDARG|EXTRA|BANG|NOTRLCOM|SBOXOK|CMDWIN),
56   EX(CMD_sleep,         "sleep",        ex_sleep,
57 *** ../vim-6.2.351/src/version.c        Fri Mar 12 21:58:35 2004
58 --- src/version.c       Sat Mar 13 14:23:14 2004
59 ***************
60 *** 639,640 ****
61 --- 639,642 ----
62   {   /* Add new patch number below this line */
63 + /**/
64 +     352,
65   /**/
66
67 -- 
68 hundred-and-one symptoms of being an internet addict:
69 27. You refer to your age as 3.x.
70
71  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
72 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
73 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
74  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.037056 seconds and 3 git commands to generate.