aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.c
diff options
context:
space:
mode:
authorii14 <59243201+ii14@users.noreply.github.com>2023-05-16 05:33:03 +0200
committerGitHub <noreply@github.com>2023-05-16 11:33:03 +0800
commitd36dd2bae8e899b40cc21603e600a5046213bc36 (patch)
treeca7689e0415f3d0d8199eb89a9578a48e069981c /src/nvim/tag.c
parent66b7f62542de0c9910f0e701a4c51834cfea3bab (diff)
downloadrneovim-d36dd2bae8e899b40cc21603e600a5046213bc36.tar.gz
rneovim-d36dd2bae8e899b40cc21603e600a5046213bc36.tar.bz2
rneovim-d36dd2bae8e899b40cc21603e600a5046213bc36.zip
refactor: use xstrl{cpy,cat} on IObuff (#23648)
Replace usage of STR{CPY,CAT} with xstrl{cpy,cat} when using on IObuff Co-authored-by: ii14 <ii14@users.noreply.github.com>
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r--src/nvim/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index 81bca67cf7..18331cc95d 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -732,7 +732,7 @@ void do_tag(char *tag, int type, int count, int forceit, int verbose)
num_matches,
max_num_matches != MAXCOL ? _(" or more") : "");
if (ic) {
- STRCAT(IObuff, _(" Using tag with different case!"));
+ xstrlcat(IObuff, _(" Using tag with different case!"), IOSIZE);
}
if ((num_matches > prev_num_matches || new_tag)
&& num_matches > 1) {