diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-03-15 09:58:39 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-03-15 09:58:39 +0100 |
commit | bb6d2c9b7c92150c631068fcc0221fabb50aae5c (patch) | |
tree | b5bed1d8a6e3c8bea469350e901e639dc88bd709 /src/nvim/api/vim.c | |
parent | f5daf55c10435930883c0c9b1aa1e035bef78443 (diff) | |
download | rneovim-bb6d2c9b7c92150c631068fcc0221fabb50aae5c.tar.gz rneovim-bb6d2c9b7c92150c631068fcc0221fabb50aae5c.tar.bz2 rneovim-bb6d2c9b7c92150c631068fcc0221fabb50aae5c.zip |
api: destabilize nvim_set_hl_ns
The sematics and signature of this API is going to change, but we
don't wanna delay 0.5 for it. Mark API as unstable for now.
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 1b428718b5..6358f35d0a 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -242,8 +242,7 @@ void nvim_set_hl(Integer ns_id, String name, Dictionary val, Error *err) /// /// @param ns_id the namespace to activate /// @param[out] err Error details, if any -void nvim_set_hl_ns(Integer ns_id, Error *err) - FUNC_API_SINCE(7) +void nvim__set_hl_ns(Integer ns_id, Error *err) FUNC_API_FAST { if (ns_id >= 0) { |