commit | 3b1c48569d98597ac0539609c9a922bedba0e081 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 31 17:59:29 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 31 17:59:29 2010 +0200 |
tree | 5c2d17215593a1ec915dc133d2ebae0a321b395e | |
parent | a9d52e3b7925ef119b5d0d9fca14faac634effb0 [diff] [blame] |
Fixed: CTRL-R in Insert mode doesn't insert composing characters.
diff --git a/src/ops.c b/src/ops.c index d259cca..beab33c 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -1439,7 +1439,7 @@ { #ifdef FEAT_MBYTE if (has_mbyte) - c = mb_ptr2char_adv(&arg); + c = mb_cptr2char_adv(&arg); else #endif c = *arg++;