mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 22:38:16 +00:00
window: Fix linter errors.
This commit is contained in:
@@ -4923,11 +4923,12 @@ file_name_in_line (
|
|||||||
// Skip over the "\" in "\ ".
|
// Skip over the "\" in "\ ".
|
||||||
++len;
|
++len;
|
||||||
}
|
}
|
||||||
if (has_mbyte)
|
if (has_mbyte) {
|
||||||
len += (size_t)(*mb_ptr2len)(ptr + len);
|
len += (size_t)(*mb_ptr2len)(ptr + len);
|
||||||
else
|
} else {
|
||||||
++len;
|
++len;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If there is trailing punctuation, remove it.
|
* If there is trailing punctuation, remove it.
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
#define FNAME_INCL 8 /* apply 'includeexpr' */
|
#define FNAME_INCL 8 /* apply 'includeexpr' */
|
||||||
#define FNAME_REL 16 /* ".." and "./" are relative to the (current)
|
#define FNAME_REL 16 /* ".." and "./" are relative to the (current)
|
||||||
file instead of the current directory */
|
file instead of the current directory */
|
||||||
#define FNAME_UNESC 32 /* remove backslashes used for escaping */
|
#define FNAME_UNESC 32 // remove backslashes used for escaping
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* arguments for win_split()
|
* arguments for win_split()
|
||||||
|
Reference in New Issue
Block a user