From 48be32b61e01246e024bef85eeacdbfa116a8d91 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 20 Jun 2008 10:56:16 +0000 Subject: [PATCH] updated for version 7.1-319 --- src/ex_getln.c | 5 +---- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/ex_getln.c b/src/ex_getln.c index 928fe2075..dabd65d14 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -3032,10 +3032,7 @@ cmdline_paste_str(s, literally) ++s; #ifdef FEAT_MBYTE if (has_mbyte) - { - c = mb_ptr2char(s); - s += mb_char2len(c); - } + c = mb_cptr2char_adv(&s); else #endif c = *s++; diff --git a/src/version.c b/src/version.c index cf910b97b..5a3f014bd 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 319, /**/ 318, /**/ -- 2.50.1