]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.176
- fix for current libselinux
[packages/vim.git] / 6.2.176
CommitLineData
d02ad552
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.176
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.176
11Problem: Accented characters in translated help files are not handled
12 correctly. (Fabien Vayssiere)
13Solution: Include "192-255" in 'iskeyword' for the help window.
14Files: src/ex_cmds.c
15
16
17*** ../vim-6.2.175/src/ex_cmds.c Mon Dec 29 21:21:52 2003
18--- src/ex_cmds.c Fri Jan 9 14:30:45 2004
19***************
20*** 4634,4647 ****
21 /*
22 * Always set these options after jumping to a help tag, because the user
23 * may have an autocommand that gets in the way.
24! * accept all chars for keywords, except ' ', '*', '"', '|'.
25 * Only set it when needed, buf_init_chartab() is some work.
26 */
27 p =
28 #ifdef EBCDIC
29 (char_u *)"65-255,^*,^|,^\"";
30 #else
31! (char_u *)"!-~,^*,^|,^\"";
32 #endif
33 if (STRCMP(curbuf->b_p_isk, p) != 0)
34 {
35--- 4634,4648 ----
36 /*
37 * Always set these options after jumping to a help tag, because the user
38 * may have an autocommand that gets in the way.
39! * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
40! * latin1 word characters (for translated help files).
41 * Only set it when needed, buf_init_chartab() is some work.
42 */
43 p =
44 #ifdef EBCDIC
45 (char_u *)"65-255,^*,^|,^\"";
46 #else
47! (char_u *)"!-~,^*,^|,^\",192-255";
48 #endif
49 if (STRCMP(curbuf->b_p_isk, p) != 0)
50 {
51*** ../vim-6.2.175/src/version.c Fri Jan 9 14:33:14 2004
52--- src/version.c Fri Jan 9 15:00:11 2004
53***************
54*** 639,640 ****
55--- 639,642 ----
56 { /* Add new patch number below this line */
57+ /**/
58+ 176,
59 /**/
60
61--
62hundred-and-one symptoms of being an internet addict:
63207. You're given one phone call in prison and you ask them for a laptop.
64
65 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
66/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
67\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
68 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.03294 seconds and 4 git commands to generate.