diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-16 14:41:10 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-16 14:41:10 +0000 |
commit | 8f0b2d46c7020c2ae097c748940f74b3af1383f7 (patch) | |
tree | d669dfdc7c3c1f0dfd85927dd4f1236a936b6126 /src/ex_cmds.c | |
parent | 856b9fef3a20557b100202efd3610f26cec5bb71 (diff) | |
download | vim-git-8f0b2d46c7020c2ae097c748940f74b3af1383f7.tar.gz |
updated for version 7.2-176v7.2.176
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 8a0a9ec12..a132963c1 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -5776,10 +5776,6 @@ find_help_tags(arg, num_matches, matches, keep_lang) { char_u *s, *d; int i; -#ifdef S_SPLINT_S /* splint doesn't understand array of pointers */ - static char **mtable; - static char **rtable; -#else static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", "/*", "/\\*", "\"*", "**", "/\\(\\)", @@ -5794,7 +5790,6 @@ find_help_tags(arg, num_matches, matches, keep_lang) "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", "\\[count]", "\\[quotex]", "\\[range]", "\\[pattern]", "\\\\bar", "/\\\\%\\$"}; -#endif int flags; d = IObuff; /* assume IObuff is long enough! */ |