diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-01-17 14:09:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-01-17 14:09:44 +0100 |
commit | 117f2c4b91fb3675d56be36c1d972f0fb4fda13a (patch) | |
tree | 1871a12e4a978778985b79a93ce13be324a6281c | |
parent | 802418d5eb5c98dcbe53390d1eceba92dd097aa4 (diff) | |
download | vim-117f2c4b91fb3675d56be36c1d972f0fb4fda13a.zip |
updated for version 7.3.766
Problem: ":help cpo-*" jumps to the wrong place.
Solution: Make it equivalent to ":help cpo-star".
-rw-r--r-- | src/ex_cmds.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index a21740247..712ba4ff9 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -5849,14 +5849,14 @@ find_help_tags(arg, num_matches, matches, keep_lang) int i; static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", "/*", "/\\*", "\"*", "**", - "/\\(\\)", + "cpo-*", "/\\(\\)", "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", "/\\?", "/\\z(\\)", "\\=", ":s\\=", "[count]", "[quotex]", "[range]", "[pattern]", "\\|", "\\%$"}; static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", "/star", "/\\\\star", "quotestar", "starstar", - "/\\\\(\\\\)", + "cpo-star", "/\\\\(\\\\)", "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", "\\[count]", "\\[quotex]", "\\[range]", diff --git a/src/version.c b/src/version.c index 375b07d49..444a3d92a 100644 --- a/src/version.c +++ b/src/version.c @@ -726,6 +726,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 766, +/**/ 765, /**/ 764, |