Merge pull request #18254 from dundargoc/refactor/remove-char_u

refactor: replace char_u variables and functions with char
This commit is contained in:
bfredl
2022-04-27 13:37:56 +02:00
committed by GitHub
6 changed files with 383 additions and 393 deletions

View File

@@ -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);