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