From 7175efb518d09aad59f7917c15b7c9752e9e320e Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Sat, 11 Sep 2021 15:28:24 +0100 Subject: fix(get_showbreak_value): remove FUNC_ATTR_UNUSED --- src/nvim/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/option.c b/src/nvim/option.c index 06389c0ef1..23b488ea68 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -7486,7 +7486,7 @@ unsigned int get_bkc_value(buf_T *buf) /// /// @param win If not NULL, the window to get the local option from; global /// otherwise. -char_u *get_showbreak_value(win_T *const win FUNC_ATTR_UNUSED) +char_u *get_showbreak_value(win_T *const win) FUNC_ATTR_WARN_UNUSED_RESULT { if (win->w_p_sbr == NULL || *win->w_p_sbr == NUL) { -- cgit