Merge pull request #20151 from dundargoc/refactor/char_u/13

refactor: replace char_u with char 13: remove `STRLEN` part 3
This commit is contained in:
bfredl
2022-11-22 11:02:24 +01:00
committed by GitHub
33 changed files with 513 additions and 512 deletions

View File

@@ -505,7 +505,7 @@ String buf_get_text(buf_T *buf, int64_t lnum, int64_t start_col, int64_t end_col
return rv;
}
return cstrn_as_string((char *)&bufstr[start_col], (size_t)(end_col - start_col));
return cstrn_as_string(&bufstr[start_col], (size_t)(end_col - start_col));
}
void api_free_string(String value)