]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.026 v7.3.026
authorBram Moolenaar <Bram@vim.org>
Wed, 13 Oct 2010 16:06:47 +0000 (18:06 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 13 Oct 2010 16:06:47 +0000 (18:06 +0200)
Problem:    CTRL-] in a help file doesn't always work. (Tony Mechelynck)
Solution:   Don't escape special characters. (Carlo Teubner)

src/normal.c
src/version.c

index b76e40d1de0e2b3d1bdf06d41419ad0efb287a99..1754e8aa0803fc920f11dfcba01a3a1de12957a7 100644 (file)
@@ -5666,8 +5666,13 @@ nv_ident(cap)
        else if (cmdchar == '#')
            aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
        else if (tag_cmd)
-           /* Don't escape spaces and Tabs in a tag with a backslash */
-           aux_ptr = (char_u *)"\\|\"\n[";
+       {
+           if (curbuf->b_help)
+               /* ":help" handles unescaped argument */
+               aux_ptr = (char_u *)"";
+           else
+               aux_ptr = (char_u *)"\\|\"\n[";
+       }
        else
            aux_ptr = (char_u *)"\\|\"\n*?[";
 
index 9959c79d3aad0d2a5dd67df465c01b749885f2e2..bedc601c8416943ef50b909a1fa55eb63582d7af 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    26,
 /**/
     25,
 /**/