]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.247
- fix for current libselinux
[packages/vim.git] / 6.2.247
CommitLineData
05649561
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.247
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 6.2.247 (after 6.2.193)
11Problem: When using a search pattern from the viminfo file the last
12 character is replaced with a '/'.
13Solution: Store the separator character in the right place. (Kelvin Lee)
14Files: src/ex_getln.c
15
16
17*** ../vim-6.2.246/src/ex_getln.c Sun Jan 18 21:27:18 2004
18--- src/ex_getln.c Mon Feb 9 10:20:37 2004
19***************
20*** 4764,4770 ****
21 sep = val[1];
22 --len;
23 mch_memmove(val, val + 2, (size_t)len);
24! val[len + 1] = (sep == ' ' ? NUL : sep);
25 }
26 else
27 {
28--- 4766,4772 ----
29 sep = val[1];
30 --len;
31 mch_memmove(val, val + 2, (size_t)len);
32! val[len] = (sep == ' ' ? NUL : sep);
33 }
34 else
35 {
36*** ../vim-6.2.246/src/version.c Sun Feb 8 17:09:51 2004
37--- src/version.c Mon Feb 9 10:26:51 2004
38***************
39*** 639,640 ****
40--- 639,642 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 247,
44 /**/
45
46--
47From "know your smileys":
48 :-) Funny
49 |-) Funny Oriental
50 (-: Funny Australian
51
52 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
53/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
55 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.035409 seconds and 4 git commands to generate.