diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-11 15:28:24 +0100 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-11 15:36:04 +0100 |
commit | 7175efb518d09aad59f7917c15b7c9752e9e320e (patch) | |
tree | 97606cb0bf0a11834e38fa8f661b7d9ba253aff0 | |
parent | 26733dd488874fee8dfc70d54167f427d5f50516 (diff) | |
download | rneovim-7175efb518d09aad59f7917c15b7c9752e9e320e.tar.gz rneovim-7175efb518d09aad59f7917c15b7c9752e9e320e.tar.bz2 rneovim-7175efb518d09aad59f7917c15b7c9752e9e320e.zip |
fix(get_showbreak_value): remove FUNC_ATTR_UNUSED
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |