1
0
forked from aniani/vim

Fixed: CTRL-R in Insert mode doesn't insert composing characters.

This commit is contained in:
Bram Moolenaar
2010-07-31 17:59:29 +02:00
parent a9d52e3b79
commit 3b1c48569d
2 changed files with 1 additions and 6 deletions

View File

@@ -1439,7 +1439,7 @@ stuffescaped(arg, literally)
{
#ifdef FEAT_MBYTE
if (has_mbyte)
c = mb_ptr2char_adv(&arg);
c = mb_cptr2char_adv(&arg);
else
#endif
c = *arg++;