diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-15 17:18:57 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-15 17:18:57 +0100 |
commit | 42b8d916c719002dbafade6b977d4e266f8712dc (patch) | |
tree | 54a8be49b78c54da0eaf1fb49e32dd460d5b13d8 /src/if_cscope.c | |
parent | 4f391796b7de78a434a2cc7107034603df414905 (diff) | |
download | vim-git-42b8d916c719002dbafade6b977d4e266f8712dc.tar.gz |
patch 8.0.0192: cannot build with tiny featuresv8.0.0192
Problem: Build fails with tiny features.
Solution: Change #ifdef for hash_clear(). Avoid warning for unused
argument.
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index 31c037187..60480a5b7 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -207,7 +207,7 @@ set_context_in_cscope_cmd( static void do_cscope_general( exarg_T *eap, - int make_split) /* whether to split window */ + int make_split UNUSED) /* whether to split window */ { cscmd_T *cmdp; |