diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-02-08 18:54:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 18:54:00 +0100 |
commit | 52b6a9a93b06bc897d9982139c143127003f42dc (patch) | |
tree | 3aeb39813a57dffb1b49a15b8d95198d2807d417 /src/nvim/buffer.c | |
parent | 451bc50d40ee43a40285d16039deb83c9bf05ff6 (diff) | |
parent | af5beac1bd7a68ff0a4e1a944853bacd6a6c0745 (diff) | |
download | rneovim-52b6a9a93b06bc897d9982139c143127003f42dc.tar.gz rneovim-52b6a9a93b06bc897d9982139c143127003f42dc.tar.bz2 rneovim-52b6a9a93b06bc897d9982139c143127003f42dc.zip |
Merge pull request #27391 from bfredl/arenarock
refactor(api): refactor more api functions to use arena return
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 00cb7272c0..7c0d415099 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -3326,7 +3326,7 @@ void maketitle(void) if (*p_titlestring != NUL) { if (stl_syntax & STL_IN_TITLE) { build_stl_str_hl(curwin, buf, sizeof(buf), p_titlestring, - kOptTitlestring, 0, 0, maxlen, NULL, NULL, NULL); + kOptTitlestring, 0, 0, maxlen, NULL, NULL, NULL, NULL); title_str = buf; } else { title_str = p_titlestring; @@ -3431,7 +3431,7 @@ void maketitle(void) if (*p_iconstring != NUL) { if (stl_syntax & STL_IN_ICON) { build_stl_str_hl(curwin, icon_str, sizeof(buf), p_iconstring, - kOptIconstring, 0, 0, 0, NULL, NULL, NULL); + kOptIconstring, 0, 0, 0, NULL, NULL, NULL, NULL); } else { icon_str = p_iconstring; } |