]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.026
- new
[packages/vim.git] / 7.3.026
CommitLineData
aa887dad 1To: vim-dev@vim.org
2Subject: Patch 7.3.026
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.3.026
11Problem: CTRL-] in a help file doesn't always work. (Tony Mechelynck)
12Solution: Don't escape special characters. (Carlo Teubner)
13Files: src/normal.c
14
15
16*** ../vim-7.3.025/src/normal.c 2010-08-15 21:57:28.000000000 +0200
17--- src/normal.c 2010-10-13 18:01:03.000000000 +0200
18***************
19*** 5666,5673 ****
20 else if (cmdchar == '#')
21 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
22 else if (tag_cmd)
23! /* Don't escape spaces and Tabs in a tag with a backslash */
24! aux_ptr = (char_u *)"\\|\"\n[";
25 else
26 aux_ptr = (char_u *)"\\|\"\n*?[";
27
28--- 5666,5678 ----
29 else if (cmdchar == '#')
30 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
31 else if (tag_cmd)
32! {
33! if (curbuf->b_help)
34! /* ":help" handles unescaped argument */
35! aux_ptr = (char_u *)"";
36! else
37! aux_ptr = (char_u *)"\\|\"\n[";
38! }
39 else
40 aux_ptr = (char_u *)"\\|\"\n*?[";
41
42*** ../vim-7.3.025/src/version.c 2010-10-13 17:50:02.000000000 +0200
43--- src/version.c 2010-10-13 18:04:54.000000000 +0200
44***************
45*** 716,717 ****
46--- 716,719 ----
47 { /* Add new patch number below this line */
48+ /**/
49+ 26,
50 /**/
51
52--
53MAN: Fetchez la vache!
54GUARD: Quoi?
55MAN: Fetchez la vache!
56 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
57
58 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
59/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
60\\\ download, build and distribute -- http://www.A-A-P.org ///
61 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.044935 seconds and 4 git commands to generate.