mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 18:36:30 +00:00
refactor: replace char_u with char 24 (#21823)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -802,7 +802,7 @@ static linenr_T debuggy_find(bool file, char *fname, linenr_T after, garray_T *g
|
||||
// while matching should abort it.
|
||||
prev_got_int = got_int;
|
||||
got_int = false;
|
||||
if (vim_regexec_prog(&bp->dbg_prog, false, (char_u *)name, (colnr_T)0)) {
|
||||
if (vim_regexec_prog(&bp->dbg_prog, false, name, (colnr_T)0)) {
|
||||
lnum = bp->dbg_lnum;
|
||||
if (fp != NULL) {
|
||||
*fp = bp->dbg_forceit;
|
||||
|
Reference in New Issue
Block a user