summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-18 22:26:31 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-18 22:26:31 +0200
commit0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a (patch)
tree9860863c20df3f5354bf67a1d7efe054e23e8a99 /src/syntax.c
parent66b51420e0c8d49bcf6786b792c938d6099e3393 (diff)
downloadvim-git-0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a.tar.gz
patch 8.1.1887: the +cmdline_compl feature is not in the tiny versionv8.1.1887
Problem: The +cmdline_compl feature is not in the tiny version. Solution: Graduate the +cmdline_compl feature.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 3d06f44f7..154b75954 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -6302,7 +6302,6 @@ syntax_present(win_T *win)
|| win->w_s->b_keywtab_ic.ht_used > 0);
}
-#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
static enum
{
@@ -6409,7 +6408,6 @@ get_syntax_name(expand_T *xp UNUSED, int idx)
return NULL;
}
-#endif /* FEAT_CMDL_COMPL */
/*
* Function called for expression evaluation: get syntax ID at file position.
@@ -6569,7 +6567,6 @@ syntime_clear(void)
}
}
-#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
/*
* Function given to ExpandGeneric() to obtain the possible arguments of the
* ":syntime {on,off,clear,report}" command.
@@ -6586,7 +6583,6 @@ get_syntime_arg(expand_T *xp UNUSED, int idx)
}
return NULL;
}
-#endif
typedef struct
{