]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.319
- updated to 7.1.326
[packages/vim.git] / 7.1.319
CommitLineData
215fbeef
AG
1To: vim-dev@vim.org
2Subject: Patch 7.1.319
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.319
11Problem: When a register has an illegal utf-8 sequence, pasting it on the
12 command line causes an illegal memory access.
13Solution: Use mb_cptr2char_adv(). (Dominique Pelle)
14Files: src/ex_getln.c
15
16
17*** ../vim-7.1.318/src/ex_getln.c Thu May 29 15:33:13 2008
18--- src/ex_getln.c Mon Jun 9 20:10:51 2008
19***************
20*** 3032,3041 ****
21 ++s;
22 #ifdef FEAT_MBYTE
23 if (has_mbyte)
24! {
25! c = mb_ptr2char(s);
26! s += mb_char2len(c);
27! }
28 else
29 #endif
30 c = *s++;
31--- 3033,3039 ----
32 ++s;
33 #ifdef FEAT_MBYTE
34 if (has_mbyte)
35! c = mb_cptr2char_adv(&s);
36 else
37 #endif
38 c = *s++;
39*** ../vim-7.1.318/src/version.c Fri Jun 20 11:58:27 2008
40--- src/version.c Fri Jun 20 12:53:16 2008
41***************
42*** 668,669 ****
43--- 673,676 ----
44 { /* Add new patch number below this line */
45+ /**/
46+ 319,
47 /**/
48
49--
50hundred-and-one symptoms of being an internet addict:
5146. Your wife makes a new rule: "The computer cannot come to bed."
52
53 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
54/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
55\\\ download, build and distribute -- http://www.A-A-P.org ///
56 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.060269 seconds and 4 git commands to generate.