0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0127

This commit is contained in:
Bram Moolenaar
2005-08-10 21:07:57 +00:00
parent c388fbf9d9
commit 0fa313a718
47 changed files with 638 additions and 465 deletions

View File

@@ -3064,7 +3064,7 @@ check_keyword_id(line, startcol, endcolp, flagsp, next_listp, cur_si)
{
#ifdef FEAT_MBYTE
if (has_mbyte)
kwlen += (*mb_ptr2len_check)(kwp + kwlen);
kwlen += (*mb_ptr2len)(kwp + kwlen);
else
#endif
++kwlen;
@@ -4519,7 +4519,7 @@ syn_cmd_keyword(eap, syncing)
#ifdef FEAT_MBYTE
if (has_mbyte)
{
int l = (*mb_ptr2len_check)(p + 1);
int l = (*mb_ptr2len)(p + 1);
mch_memmove(p, p + 1, l);
p += l;