mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
refactor: use S_LEN(s) instead of s, n (#29219)
This commit is contained in:
@@ -399,7 +399,7 @@ void *vim_findfile_init(char *path, char *filename, char *stopdirs, int level, i
|
||||
emsg(_(e_path_too_long_for_completion));
|
||||
break;
|
||||
}
|
||||
if (strncmp(wc_part, "**", 2) == 0) {
|
||||
if (strncmp(wc_part, S_LEN("**")) == 0) {
|
||||
ff_expand_buffer[len++] = *wc_part++;
|
||||
ff_expand_buffer[len++] = *wc_part++;
|
||||
|
||||
@@ -462,7 +462,7 @@ void *vim_findfile_init(char *path, char *filename, char *stopdirs, int level, i
|
||||
if (p > search_ctx->ffsc_fix_path) {
|
||||
// do not add '..' to the path and start upwards searching
|
||||
len = (int)(p - search_ctx->ffsc_fix_path) - 1;
|
||||
if ((len >= 2 && strncmp(search_ctx->ffsc_fix_path, "..", 2) == 0)
|
||||
if ((len >= 2 && strncmp(search_ctx->ffsc_fix_path, S_LEN("..")) == 0)
|
||||
&& (len == 2 || search_ctx->ffsc_fix_path[2] == PATHSEP)) {
|
||||
xfree(buf);
|
||||
goto error_return;
|
||||
@@ -690,7 +690,7 @@ char *vim_findfile(void *search_ctx_arg)
|
||||
rest_of_wildcards = stackp->ffs_wc_path;
|
||||
if (*rest_of_wildcards != NUL) {
|
||||
len = strlen(file_path);
|
||||
if (strncmp(rest_of_wildcards, "**", 2) == 0) {
|
||||
if (strncmp(rest_of_wildcards, S_LEN("**")) == 0) {
|
||||
// pointer to the restrict byte
|
||||
// The restrict byte is not a character!
|
||||
p = rest_of_wildcards + 2;
|
||||
@@ -867,7 +867,7 @@ char *vim_findfile(void *search_ctx_arg)
|
||||
|
||||
// if wildcards contains '**' we have to descent till we reach the
|
||||
// leaves of the directory tree.
|
||||
if (strncmp(stackp->ffs_wc_path, "**", 2) == 0) {
|
||||
if (strncmp(stackp->ffs_wc_path, S_LEN("**")) == 0) {
|
||||
for (int i = stackp->ffs_filearray_cur;
|
||||
i < stackp->ffs_filearray_size; i++) {
|
||||
if (path_fnamecmp(stackp->ffs_filearray[i],
|
||||
|
Reference in New Issue
Block a user