diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-02 19:02:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-02 19:02:27 +0200 |
commit | 6116b6abb1a14b6b7aa9776c390f1a5a6bf1b209 (patch) | |
tree | cc2829f6311044eebfe9d0fb986bb0a43f5d553e /src/autocmd.c | |
parent | 3397f74ac2ac27f1eef48e950c3c8eeb0338fe55 (diff) | |
download | vim-git-6116b6abb1a14b6b7aa9776c390f1a5a6bf1b209.tar.gz |
patch 8.1.1454: build failure without the conceal featurev8.1.1454
Problem: Build failure without the conceal feature.
Solution: Remove #ifdef.
Diffstat (limited to 'src/autocmd.c')
-rw-r--r-- | src/autocmd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/autocmd.c b/src/autocmd.c index 82b58689d..1abd410d9 100644 --- a/src/autocmd.c +++ b/src/autocmd.c @@ -1709,7 +1709,6 @@ has_cursormoved(void) return (first_autopat[(int)EVENT_CURSORMOVED] != NULL); } -#if defined(FEAT_CONCEAL) || defined(PROTO) /* * Return TRUE when there is a CursorMovedI autocommand defined. */ @@ -1718,7 +1717,6 @@ has_cursormovedI(void) { return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL); } -#endif /* * Return TRUE when there is a TextChanged autocommand defined. |