summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-16 14:41:10 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-16 14:41:10 +0000
commit8f0b2d46c7020c2ae097c748940f74b3af1383f7 (patch)
treed669dfdc7c3c1f0dfd85927dd4f1236a936b6126 /src/ex_cmds.c
parent856b9fef3a20557b100202efd3610f26cec5bb71 (diff)
updated for version 7.2-176v7.2.176
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 8a0a9ec128..a132963c1e 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! */