]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.617
- add patches 7.3.619-743
[packages/vim.git] / 7.3.617
CommitLineData
46534d20
AM
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.617
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.617 (after 7.3.615)
11Problem: Hang on completion.
12Solution: Skip over the space. (Yasuhiro Matsumoto)
13Files: src/ex_docmd.c
14
15
16*** ../vim-7.3.616/src/ex_docmd.c 2012-07-25 17:22:17.000000000 +0200
17--- src/ex_docmd.c 2012-07-27 21:07:42.000000000 +0200
18***************
19*** 3837,3852 ****
20 while (*p)
21 {
22 if (*p == ' ')
23- {
24 /* argument starts after a space */
25 arg = p + 1;
26! }
27! else
28! {
29! if (*p == '\\' && *(p + 1) != NUL)
30! ++p; /* skip over escaped character */
31! mb_ptr_adv(p);
32! }
33 }
34 xp->xp_pattern = arg;
35 }
36--- 3837,3847 ----
37 while (*p)
38 {
39 if (*p == ' ')
40 /* argument starts after a space */
41 arg = p + 1;
42! else if (*p == '\\' && *(p + 1) != NUL)
43! ++p; /* skip over escaped character */
44! mb_ptr_adv(p);
45 }
46 xp->xp_pattern = arg;
47 }
48*** ../vim-7.3.616/src/version.c 2012-07-27 21:05:51.000000000 +0200
49--- src/version.c 2012-07-27 21:08:31.000000000 +0200
50***************
51*** 716,717 ****
52--- 716,719 ----
53 { /* Add new patch number below this line */
54+ /**/
55+ 617,
56 /**/
57
58--
59If Microsoft would build a car...
60... You'd have to press the "Start" button to turn the engine off.
61
62 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
63/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
64\\\ an exciting new programming language -- http://www.Zimbu.org ///
65 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.051363 seconds and 4 git commands to generate.