]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.085
- updated to 7.2.102
[packages/vim.git] / 7.2.085
CommitLineData
3e524028
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.085
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.2.085
11Problem: ":set <M-b>=<Esc>b" does not work when 'encoding' is utf-8.
12Solution: Put the <M-b> character in the input buffer as valid utf-8.
13 (partly by Matt Wosniski)
14Files: src/term.c
15
16
17*** ../vim-7.2.084/src/term.c Tue Jul 29 12:22:12 2008
18--- src/term.c Thu Jan 22 18:18:29 2009
19***************
20*** 4920,4926 ****
21 key_name[0] = KEY2TERMCAP0(key);
22 key_name[1] = KEY2TERMCAP1(key);
23 if (key_name[0] == KS_KEY)
24! string[new_slen++] = key_name[1]; /* from ":set <M-b>=xx" */
25 else
26 {
27 string[new_slen++] = K_SPECIAL;
28--- 4920,4934 ----
29 key_name[0] = KEY2TERMCAP0(key);
30 key_name[1] = KEY2TERMCAP1(key);
31 if (key_name[0] == KS_KEY)
32! {
33! /* from ":set <M-b>=xx" */
34! #ifdef FEAT_MBYTE
35! if (has_mbyte)
36! new_slen += (*mb_char2bytes)(key_name[1], string + new_slen);
37! else
38! #endif
39! string[new_slen++] = key_name[1];
40! }
41 else
42 {
43 string[new_slen++] = K_SPECIAL;
44*** ../vim-7.2.084/src/version.c Tue Jan 13 18:10:21 2009
45--- src/version.c Thu Jan 22 18:31:50 2009
46***************
47*** 678,679 ****
48--- 678,681 ----
49 { /* Add new patch number below this line */
50+ /**/
51+ 85,
52 /**/
53
54--
55hundred-and-one symptoms of being an internet addict:
5620. When looking at a pageful of someone else's links, you notice all of them
57 are already highlighted in purple.
58
59 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
60/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
61\\\ download, build and distribute -- http://www.A-A-P.org ///
62 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.040842 seconds and 4 git commands to generate.