]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.395
- new
[packages/vim.git] / 7.2.395
CommitLineData
d1b4bd6a
ER
1To: vim-dev@vim.org
2Subject: Patch 7.2.395
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.395
11Problem: In help CTRL=] on g?g? escapes the ?, causing it to fail. (Tony
12 Mechelynck)
13Solution: Don't escape ? for a help command. (Sergey Khorev)
14Files: src/normal.c
15
16
17*** ../vim-7.2.394/src/normal.c 2010-01-19 15:23:38.000000000 +0100
18--- src/normal.c 2010-03-13 13:04:46.000000000 +0100
19***************
20*** 5526,5536 ****
21 break;
22
23 default:
24 if (curbuf->b_help)
25 STRCPY(buf, "he! ");
26 else
27 {
28- tag_cmd = TRUE;
29 if (g_cmd)
30 STRCPY(buf, "tj ");
31 else
32--- 5526,5536 ----
33 break;
34
35 default:
36+ tag_cmd = TRUE;
37 if (curbuf->b_help)
38 STRCPY(buf, "he! ");
39 else
40 {
41 if (g_cmd)
42 STRCPY(buf, "tj ");
43 else
44*** ../vim-7.2.394/src/version.c 2010-03-10 17:14:07.000000000 +0100
45--- src/version.c 2010-03-17 13:05:11.000000000 +0100
46***************
47*** 683,684 ****
48--- 683,686 ----
49 { /* Add new patch number below this line */
50+ /**/
51+ 395,
52 /**/
53
54--
55There are three kinds of people: Those who can count & those who can't.
56
57 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
58/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
59\\\ download, build and distribute -- http://www.A-A-P.org ///
60 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.096912 seconds and 4 git commands to generate.