diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-10-15 18:17:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-15 18:17:07 +0200 |
commit | d4841e24dac9a16b8b90b212df20872badc4468e (patch) | |
tree | 921d79e13daf44adbfbc5585f7dc405b6429ed19 /src/nvim/help.c | |
parent | 0434f732a696248c24e111b558406f9534db6ca3 (diff) | |
parent | 04cdea5f4ac49fa62cc4091a5c26791b80b4cc4c (diff) | |
download | rneovim-d4841e24dac9a16b8b90b212df20872badc4468e.tar.gz rneovim-d4841e24dac9a16b8b90b212df20872badc4468e.tar.bz2 rneovim-d4841e24dac9a16b8b90b212df20872badc4468e.zip |
Merge pull request #20140 from dundargoc/refactor/char_u/12
refactor: replace char_u with char 12: remove `STRLEN` part 2
Diffstat (limited to 'src/nvim/help.c')
-rw-r--r-- | src/nvim/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/help.c b/src/nvim/help.c index 7c61a56785..5cc2cda52b 100644 --- a/src/nvim/help.c +++ b/src/nvim/help.c @@ -659,7 +659,7 @@ void fix_help_buffer(void) if (!syntax_present(curwin)) { for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; lnum++) { line = ml_get_buf(curbuf, lnum, false); - const size_t len = STRLEN(line); + const size_t len = strlen(line); if (in_example && len > 0 && !ascii_iswhite(line[0])) { // End of example: non-white or '<' in first column. if (line[0] == '<') { |