summaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-31 17:59:29 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-31 17:59:29 +0200
commit3b1c48569d98597ac0539609c9a922bedba0e081 (patch)
tree5c2d17215593a1ec915dc133d2ebae0a321b395e /src/ops.c
parenta9d52e3b7925ef119b5d0d9fca14faac634effb0 (diff)
downloadvim-git-3b1c48569d98597ac0539609c9a922bedba0e081.tar.gz
Fixed: CTRL-R in Insert mode doesn't insert composing characters.
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index d259cca95..beab33c15 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -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++;