]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.019
- updated to 7.1.285
[packages/vim.git] / 7.1.019
CommitLineData
ad28a8ff
AG
1To: vim-dev@vim.org
2Subject: patch 7.1.019
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.019
11Problem: ":py" asks for an argument, ":py asd" then gives the error that
12 ":py" isn't implemented. Should already happen for ":py".
13Solution: Compare with ex_script_ni. (Chris Lubinski)
14Files: src/ex_docmd.c
15
16
17*** ../vim-7.1.018/src/ex_docmd.c Thu May 10 18:53:03 2007
18--- src/ex_docmd.c Sat Jun 23 13:36:37 2007
19***************
20*** 2118,2124 ****
21 #ifdef FEAT_USR_CMDS
22 !USER_CMDIDX(ea.cmdidx) &&
23 #endif
24! cmdnames[ea.cmdidx].cmd_func == ex_ni);
25
26 #ifndef FEAT_EVAL
27 /*
28--- 2118,2125 ----
29 #ifdef FEAT_USR_CMDS
30 !USER_CMDIDX(ea.cmdidx) &&
31 #endif
32! (cmdnames[ea.cmdidx].cmd_func == ex_ni
33! || cmdnames[ea.cmdidx].cmd_func == ex_script_ni));
34
35 #ifndef FEAT_EVAL
36 /*
37*** ../vim-7.1.018/src/version.c Thu Jun 28 22:14:28 2007
38--- src/version.c Thu Jul 5 09:48:11 2007
39***************
40*** 668,669 ****
41--- 668,671 ----
42 { /* Add new patch number below this line */
43+ /**/
44+ 19,
45 /**/
46
47--
48MARTHA'S WAY: Don't throw out all that leftover wine. Freeze into ice cubes
49 for future use in casseroles and sauces.
50MY WAY: What leftover wine?
51
52 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
53/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54\\\ download, build and distribute -- http://www.A-A-P.org ///
55 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.037019 seconds and 4 git commands to generate.