From bb6d2c9b7c92150c631068fcc0221fabb50aae5c Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Mon, 15 Mar 2021 09:58:39 +0100 Subject: 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. --- src/nvim/api/vim.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') 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) { -- cgit