0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 7.4.826

Problem:    Compiler warnings and errors.
Solution:   Make it build properly without the multi-byte feature.
This commit is contained in:
Bram Moolenaar
2015-08-13 23:28:43 +02:00
parent 1560d07045
commit 3cfd5289ca
3 changed files with 6 additions and 4 deletions

View File

@@ -17056,8 +17056,8 @@ f_setcharsearch(argvars, rettv)
}
else
#endif
set_last_csearch(mb_ptr2char(csearch),
csearch, mb_ptr2len(csearch));
set_last_csearch(PTR2CHAR(csearch),
csearch, MB_PTR2LEN(csearch));
}
di = dict_find(d, (char_u *)"forward", -1);