mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
Merge pull request #18254 from dundargoc/refactor/remove-char_u
refactor: replace char_u variables and functions with char
This commit is contained in:
@@ -1040,8 +1040,8 @@ static bool cs_find_common(char *opt, char *pat, int forceit, int verbose, bool
|
||||
wp = curwin;
|
||||
}
|
||||
// '-' starts a new error list
|
||||
if (qf_init(wp, tmp, (char_u *)"%f%*\\t%l%*\\t%m",
|
||||
*qfpos == '-', cmdline, NULL) > 0) {
|
||||
if (qf_init(wp, (char *)tmp, "%f%*\\t%l%*\\t%m",
|
||||
*qfpos == '-', (char *)cmdline, NULL) > 0) {
|
||||
if (postponed_split != 0) {
|
||||
(void)win_split(postponed_split > 0 ? postponed_split : 0,
|
||||
postponed_split_flags);
|
||||
|
Reference in New Issue
Block a user