refactor: replace char_u variables and functions with char

Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
Dundar Goc
2022-04-25 09:08:52 +02:00
parent 89df042a89
commit 4aae0eebb2
6 changed files with 383 additions and 393 deletions

View File

@@ -1039,8 +1039,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);