comparison src/eval.c @ 7019:db0328a2fa2a v7.4.826

patch 7.4.826 Problem: Compiler warnings and errors. Solution: Make it build properly without the multi-byte feature.
author Bram Moolenaar <bram@vim.org>
date Thu, 13 Aug 2015 23:28:43 +0200
parents 962b3ae252a9
children e8eccb9621f7
comparison
equal deleted inserted replaced
7018:d4e2b9821843 7019:db0328a2fa2a
17054 17054
17055 set_last_csearch(c, csearch, utfc_ptr2len(csearch)); 17055 set_last_csearch(c, csearch, utfc_ptr2len(csearch));
17056 } 17056 }
17057 else 17057 else
17058 #endif 17058 #endif
17059 set_last_csearch(mb_ptr2char(csearch), 17059 set_last_csearch(PTR2CHAR(csearch),
17060 csearch, mb_ptr2len(csearch)); 17060 csearch, MB_PTR2LEN(csearch));
17061 } 17061 }
17062 17062
17063 di = dict_find(d, (char_u *)"forward", -1); 17063 di = dict_find(d, (char_u *)"forward", -1);
17064 if (di != NULL) 17064 if (di != NULL)
17065 set_csearch_direction(get_tv_number(&di->di_tv) 17065 set_csearch_direction(get_tv_number(&di->di_tv)