diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-20 15:30:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-20 15:30:40 +0100 |
commit | 113e10721f42fc2500b63fe95193f8665658a90c (patch) | |
tree | 4395acb733cc8d7a798df8f4a91c5c1afa084841 /src/getchar.c | |
parent | 1f20daa1d784e2d8ae13db5b9c8abbb648dd2a03 (diff) | |
download | vim-git-113e10721f42fc2500b63fe95193f8665658a90c.tar.gz |
patch 8.1.0785: depending on the configuration some functions are unusedv8.1.0785
Problem: Depending on the configuration some functions are unused.
Solution: Add more #ifdefs, remove unused functions. (Dominique Pelle,
closes #3822)
Diffstat (limited to 'src/getchar.c')
-rw-r--r-- | src/getchar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/getchar.c b/src/getchar.c index c0cfd92d6..0f8197944 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -413,6 +413,7 @@ stuff_empty(void) && readbuf2.bh_first.b_next == NULL); } +#if defined(FEAT_EVAL) || defined(PROTO) /* * Return TRUE if readbuf1 is empty. There may still be redo characters in * redbuf2. @@ -422,6 +423,7 @@ readbuf1_empty(void) { return (readbuf1.bh_first.b_next == NULL); } +#endif /* * Set a typeahead character that won't be flushed. |