]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.252
- updated to 7.2.330
[packages/vim.git] / 7.2.252
CommitLineData
4ff12b6a
ER
1To: vim-dev@vim.org
2Subject: Patch 7.2.252
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.2.252
11Problem: When using a multi-byte 'enc' the 'iskeyword' option cannot
12 contain characters above 128.
13Solution: Use mb_ptr2char_adv().
14Files: src/charset.c
15
16
17*** ../vim-7.2.251/src/charset.c 2009-05-14 22:19:19.000000000 +0200
18--- src/charset.c 2009-09-09 21:11:46.000000000 +0200
19***************
20*** 174,179 ****
21--- 174,184 ----
22 if (VIM_ISDIGIT(*p))
23 c = getdigits(&p);
24 else
25+ #ifdef FEAT_MBYTE
26+ if (has_mbyte)
27+ c = mb_ptr2char_adv(&p);
28+ else
29+ #endif
30 c = *p++;
31 c2 = -1;
32 if (*p == '-' && p[1] != NUL)
33*** ../vim-7.2.251/src/version.c 2009-09-11 13:44:33.000000000 +0200
34--- src/version.c 2009-09-11 14:01:48.000000000 +0200
35***************
36*** 678,679 ****
37--- 678,681 ----
38 { /* Add new patch number below this line */
39+ /**/
40+ 252,
41 /**/
42
43--
44hundred-and-one symptoms of being an internet addict:
45226. You sit down at the computer right after dinner and your spouse
46 says "See you in the morning."
47
48 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
49/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
50\\\ download, build and distribute -- http://www.A-A-P.org ///
51 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.030404 seconds and 4 git commands to generate.